diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-08-18 17:21:38 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-08-18 17:21:38 -0700 |
commit | 69fcdc66ba2b352ea1c79277d3815e55f7c8ab34 (patch) | |
tree | 46237fe8b608451fa18d29b328f4888a8d9ca5d2 /missing | |
parent | 170b9655f263a04adc50a6ddb3302b889b72e2fa (diff) |
Always include <config.h> rather than "config.h".
This can prevent bizarre failures if, for example, you've done a
configuration in the top-level source directory, leaving behind one
config.h file, and then do an out-of-tree build in another directory,
with different configuration options. This way, we always pick up the
same config.h, in the build directory.
Diffstat (limited to 'missing')
-rw-r--r-- | missing/strtok_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/missing/strtok_r.c b/missing/strtok_r.c index c9c94b95..5fca2f3d 100644 --- a/missing/strtok_r.c +++ b/missing/strtok_r.c @@ -35,7 +35,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include "portability.h" |