diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-06-21 13:09:08 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-06-21 13:09:08 +0200 |
commit | 60149b28590be28051f99d0a343d7fbe002f2a8c (patch) | |
tree | 3eb9b2d7016cedd4178a193fe6c0146ec847f7ee /support/xunistd.h | |
parent | 965d5c391c86eb3a812ce308411c32754f12a9d2 (diff) | |
download | glibc-60149b28590be28051f99d0a343d7fbe002f2a8c.tar glibc-60149b28590be28051f99d0a343d7fbe002f2a8c.tar.gz glibc-60149b28590be28051f99d0a343d7fbe002f2a8c.tar.bz2 glibc-60149b28590be28051f99d0a343d7fbe002f2a8c.zip |
__inet_pton_length: Implement new internal helper function
Diffstat (limited to 'support/xunistd.h')
-rw-r--r-- | support/xunistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/xunistd.h b/support/xunistd.h index 151d743e1f..c947bfd8fb 100644 --- a/support/xunistd.h +++ b/support/xunistd.h @@ -48,7 +48,7 @@ void xwrite (int, const void *, size_t); /* Invoke mmap with a zero file offset. */ void *xmmap (void *addr, size_t length, int prot, int flags, int fd); - +void xmprotect (void *addr, size_t length, int prot); void xmunmap (void *addr, size_t length); __END_DECLS |