summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-09-25 18:58:42 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-09-25 18:58:42 (GMT)
commitbb3e3134191058f4dfe41cadd702f52098562bab (patch)
tree42ada020d71c08d58f701df3a90d03f325d7f365
parentffaff7a404580b689a13579aa46db28d006ab11e (diff)
downloadhdf5-bb3e3134191058f4dfe41cadd702f52098562bab.zip
hdf5-bb3e3134191058f4dfe41cadd702f52098562bab.tar.gz
hdf5-bb3e3134191058f4dfe41cadd702f52098562bab.tar.bz2
[svn-r1662] file wouldn't compile. needed an #include <fcntl.h> for some macros
it didn't know about.(O_EXCL, O_RDWR, etc)
-rw-r--r--tools/h5toh4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5toh4.c b/tools/h5toh4.c
index 1545398..9bb03f1 100644
--- a/tools/h5toh4.c
+++ b/tools/h5toh4.c
@@ -14,7 +14,7 @@
#include <stdio.h>
#include <errno.h>
#include <string.h>
-
+#include <fcntl.h>
#include <h5toh4.h>
extern int PrintOptions_h5toh4(void);