diff options
| author | Andrew Tridgell <tridge@samba.org> | 1998-05-26 14:18:59 +0000 |
|---|---|---|
| committer | Andrew Tridgell <tridge@samba.org> | 1998-05-26 14:18:59 +0000 |
| commit | bb0f7089fea7318a48b0fc3a4b052330a9fabcc3 (patch) | |
| tree | c71e4db286c875189686082fc83d54921f29982c /syscall.c | |
| parent | 1ff5450d31ee81523f5af44acfc4556e5aa91036 (diff) | |
| download | android_external_rsync-bb0f7089fea7318a48b0fc3a4b052330a9fabcc3.tar.gz android_external_rsync-bb0f7089fea7318a48b0fc3a4b052330a9fabcc3.tar.bz2 android_external_rsync-bb0f7089fea7318a48b0fc3a4b052330a9fabcc3.zip | |
check for munmap as well as mmap. NextStep only has mmap in standard
libs
Diffstat (limited to 'syscall.c')
| -rw-r--r-- | syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ OFF_T do_lseek(int fd, OFF_T offset, int whence) #endif } -#if HAVE_MMAP +#ifdef USE_MMAP void *do_mmap(void *start, int len, int prot, int flags, int fd, OFF_T offset) { #if HAVE_OFF64_T |
