Skip to content

Commit

Permalink
fix missing headers
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatharu committed Feb 15, 2019
1 parent 1417917 commit 7f9104d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/footprinttobin/main.cpp
Expand Up @@ -51,6 +51,12 @@ namespace footprinttobin {
}

#include "../include/oasis.h"

#if !defined(_MSC_VER) && !defined(__MINGW32__)
#include <signal.h>
#include <string.h>
#endif

char *progname;
#if !defined(_MSC_VER) && !defined(__MINGW32__)
void segfault_sigaction(int signal, siginfo_t *si, void *arg) {
Expand Down
6 changes: 6 additions & 0 deletions src/footprinttocsv/main.cpp
Expand Up @@ -44,6 +44,12 @@ Author: Joh Carter email: johanna.carter@oasislmf.org
#include <unistd.h>
#endif

#if !defined(_MSC_VER) && !defined(__MINGW32__)
#include <signal.h>
#include <string.h>
#endif


namespace footprinttocsv {
void doit(bool skipheader);
void doitz(bool skipheader);
Expand Down

0 comments on commit 7f9104d

Please sign in to comment.