diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-10-24 11:53:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-10-24 11:53:57 +0200 |
commit | 6f694e961271fed7518ecb29841a6ffeb8e31697 (patch) | |
tree | 78011f118e74fa58f62de906d96010c314a3582d | |
parent | 9e7c95213aa736bd50e8af15ed364b0c4d418f62 (diff) |
loplugin:includeform: soltools (macOS)
Change-Id: I7e2a8d13e068f651bf6e8fbbb66363a4b2b5b0e7
-rw-r--r-- | soltools/cpp/_getopt.c | 2 | ||||
-rw-r--r-- | soltools/cpp/_unix.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/soltools/cpp/_getopt.c b/soltools/cpp/_getopt.c index 4e609bae92de..a5cd4389558b 100644 --- a/soltools/cpp/_getopt.c +++ b/soltools/cpp/_getopt.c @@ -20,7 +20,7 @@ #include <stdio.h> #include <string.h> -#include <_getopt.h> +#include "_getopt.h" #define EPR fprintf(stderr, #define ERR(str, chr) if(opterr) { EPR "%s%c\n", str, chr); } diff --git a/soltools/cpp/_unix.c b/soltools/cpp/_unix.c index c42d22b4b586..7d15d57ed45a 100644 --- a/soltools/cpp/_unix.c +++ b/soltools/cpp/_unix.c @@ -32,7 +32,7 @@ #include "cpp.h" #if defined(MACOSX) || defined(AIX) || defined(_WIN32) -#include <_getopt.h> +#include "_getopt.h" #else #include <getopt.h> #endif |