diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/if.h | 2 | ||||
-rw-r--r-- | include/unistd.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/net/if.h b/include/net/if.h index 9863dce..872ab6d 100644 --- a/include/net/if.h +++ b/include/net/if.h @@ -4,5 +4,7 @@ libc_hidden_proto (if_nametoindex) libc_hidden_proto (if_indextoname) +libc_hidden_proto (if_nameindex) +libc_hidden_proto (if_freenameindex) #endif diff --git a/include/unistd.h b/include/unistd.h index 249171a..f4d6cad 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -130,6 +130,7 @@ extern int __getpagesize (void) __attribute__ ((__const__)); libc_hidden_proto (__getpagesize) extern int __ftruncate (int __fd, __off_t __length); extern int __ftruncate64 (int __fd, __off64_t __length); +extern int __truncate (const char *path, __off_t __length); extern void *__sbrk (intptr_t __delta); libc_hidden_proto (__sbrk) |