diff options
author | Wojciech Meyer <wojciech.meyer@gmail.com> | 2013-02-25 03:01:28 +0000 |
---|---|---|
committer | Wojciech Meyer <wojciech.meyer@gmail.com> | 2013-02-25 03:01:28 +0000 |
commit | fb17e50db586b6e92dc720aec3679dfd34188b96 (patch) | |
tree | 6b32040f2c4ea9f6c2d6a7f5337896d47ee3b4f7 | |
parent | 1b9b819f39370745d2b945c782884bc5c0c8c685 (diff) |
byterun/win32.c: use < > to #include flexdll.h instead of "".
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13313 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | byterun/win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/win32.c b/byterun/win32.c index 35c7625ee..8d437ee4a 100644 --- a/byterun/win32.c +++ b/byterun/win32.c @@ -31,7 +31,7 @@ #include "signals.h" #include "sys.h" -#include "flexdll.h" +#include <flexdll.h> #ifndef S_ISREG #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) @@ -496,4 +496,4 @@ void caml_install_invalid_parameter_handler() _set_invalid_parameter_handler(invalid_parameter_handler); } -#endif +#endif |