dns response handling: don't treat too many addresses as an error
[musl] / src / process / fdop.h
index 00b8751..7cf733b 100644 (file)
@@ -1,6 +1,8 @@
 #define FDOP_CLOSE 1
 #define FDOP_DUP2 2
 #define FDOP_OPEN 3
+#define FDOP_CHDIR 4
+#define FDOP_FCHDIR 5
 
 struct fdop {
        struct fdop *next, *prev;
@@ -8,3 +10,8 @@ struct fdop {
        mode_t mode;
        char path[];
 };
+
+#define malloc __libc_malloc
+#define calloc __libc_calloc
+#define realloc undef
+#define free __libc_free