]> git.ozlabs.org Git - ccan/blobdiff - ccan/failtest/failtest_undo.h
failtest: use 64 bit offsets if available.
[ccan] / ccan / failtest / failtest_undo.h
index 17bf35660a72a3ee91000b182d79a57a09accfbf..ff5e47b970730ee65559a1aff6be68712a175303 100644 (file)
@@ -1,3 +1,4 @@
+/* Licensed under LGPL - see LICENSE file for details */
 #ifndef CCAN_FAILTEST_RESTORE_H
 #define CCAN_FAILTEST_RESTORE_H
 /* This file undoes the effect of failtest_override.h. */
@@ -15,8 +16,8 @@
        failtest_realloc((ptr), (size), NULL, 0)
 
 #undef open
-#define open(pathname, flags, ...) \
-       failtest_open((pathname), (flags), NULL, 0, __VA_ARGS__)
+#define open(pathname, ...) \
+       failtest_open((pathname), NULL, 0, __VA_ARGS__)
 
 #undef pipe
 #define pipe(pipefd) \
@@ -33,4 +34,8 @@
 #undef close
 #define close(fd) failtest_close(fd)
 
+#undef fcntl
+#define fcntl(fd, ...) \
+       failtest_fcntl((fd), NULL, 0, __VA_ARGS__)
+
 #endif /* CCAN_FAILTEST_RESTORE_H */