Remove duplicate declaration of mlock, munlock.

Bug: http://b/28067717
Change-Id: I4fe5a4368e5112a5d6aed5de9549155d3352962a
This commit is contained in:
Josh Gao 2016-04-07 10:59:45 -07:00
parent 37b23cbff5
commit 70856fb6ec
1 changed files with 1 additions and 4 deletions

View File

@ -63,15 +63,12 @@ extern void* mremap(void*, size_t, size_t, int, ...);
extern int mlockall(int);
extern int munlockall(void);
extern int mlock(const void*, size_t);
extern int munlock(const void*, size_t);
extern int madvise(void*, size_t, int);
extern int mlock(const void*, size_t);
extern int munlock(const void*, size_t);
extern int mincore(void*, size_t, unsigned char*);
extern int madvise(void*, size_t, int);
extern int posix_madvise(void*, size_t, int);
__END_DECLS