Skip to content

Commit

Permalink
Merge pull request #7 from balr0g/mbelib-header-fix
Browse files Browse the repository at this point in the history
Don't include unnecessary headers in mbelib.h
  • Loading branch information
szechyjs committed Nov 21, 2013
2 parents 316bab6 + 4c533e9 commit 0adb87b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
7 changes: 5 additions & 2 deletions ambe3600x2250.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
*/

#include <stdlib.h>
#include <mbelib.h>
#include <ambe3600x2250_const.h>
#include <stdio.h>
#include <math.h>

#include "mbelib.h"
#include "ambe3600x2250_const.h"

void
mbe_dumpAmbe2250Data (char *ambe_d)
Expand Down
5 changes: 4 additions & 1 deletion imbe7100x4400.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
*/

#include <stdlib.h>
#include <mbelib.h>
#include <stdio.h>
#include <math.h>

#include "mbelib.h"

void
mbe_dumpImbe7100x4400Data (char *imbe_d)
Expand Down
7 changes: 5 additions & 2 deletions imbe7200x4400.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
*/

#include <stdlib.h>
#include <mbelib.h>
#include <imbe7200x4400_const.h>
#include <stdio.h>
#include <math.h>

#include "mbelib.h"
#include "imbe7200x4400_const.h"

void
mbe_dumpImbe4400Data (char *imbe_d)
Expand Down
3 changes: 3 additions & 0 deletions mbelib.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
*/

#include <stdlib.h>
#include <stdio.h>
#include <math.h>

#include "mbelib.h"
#include "mbelib_const.h"

Expand Down
4 changes: 0 additions & 4 deletions mbelib.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@

#define MBELIB_VERSION "1.2.5"

#include "config.h"
#include <stdio.h>
#include <math.h>

struct mbe_parameters
{
float w0;
Expand Down

0 comments on commit 0adb87b

Please sign in to comment.