diff options
author | root <root> | 2011-06-05 19:58:37 +0000 |
---|---|---|
committer | root <root> | 2011-06-05 19:58:37 +0000 |
commit | 653e0063cb266d51505942ab3642db3401aa7806 (patch) | |
tree | a892176bf259c1dca868b4bf6322817682e08f1e /eio.c | |
parent | fab2920f9835dd64d82e321e7e65b9eb09550dba (diff) |
*** empty log message ***
Diffstat (limited to 'eio.c')
-rw-r--r-- | eio.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -60,6 +60,12 @@ #include <fcntl.h> #include <assert.h> +/* intptr_t comes from unistd.h, says POSIX/UNIX/tradition */ +/* intptr_t only comes form stdint.h, says idiot openbsd coder */ +#if HAVE_STDINT_H +# include <stdint.h> +#endif + #ifndef EIO_FINISH # define EIO_FINISH(req) ((req)->finish) && !EIO_CANCELLED (req) ? (req)->finish (req) : 0 #endif |