diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 12:48:00 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:08 +0200 |
commit | d166b798529dab4538054d0b68797c0cc17f34de (patch) | |
tree | 8bbdeba0c71b1819abe153e7bf3a2c024adc42cf /source3/lib/system.c | |
parent | 9cc056e567fe923bb3a19fce3828cdbea9a3d2f7 (diff) | |
download | samba-d166b798529dab4538054d0b68797c0cc17f34de.tar.gz samba-d166b798529dab4538054d0b68797c0cc17f34de.tar.xz samba-d166b798529dab4538054d0b68797c0cc17f34de.zip |
build: Remove sys_open wrapper
Diffstat (limited to 'source3/lib/system.c')
-rw-r--r-- | source3/lib/system.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index b12def5929..f22215d2a1 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -585,15 +585,6 @@ int sys_fallocate(int fd, enum vfs_fallocate_mode mode, SMB_OFF_T offset, SMB_OF } /******************************************************************* - An open() wrapper. -********************************************************************/ - -int sys_open(const char *path, int oflag, mode_t mode) -{ - return open(path, oflag, mode); -} - -/******************************************************************* An fopen() wrapper. ********************************************************************/ |