Commit 5a8d0e95 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix icc warnings on linux. addresses #1307

git-svn-id: file:///svn/toku/tokudb.1032b@8275 c7de825b-a66e-492c-adef-691d508d4ae1
parent 8d171fdf
......@@ -75,9 +75,9 @@ extern "C" {
# pragma deprecated (fstat, getpid, syscall, sysconf, mkdir)
# else
int fstat() __attribute__((__deprecated__));
int getpid() __attribute__((__deprecated__));
int getpid(void) __attribute__((__deprecated__));
long int syscall(long int __sysno, ...) __attribute__((__deprecated__));
long int sysconf() __attribute__((__deprecated__));
long int sysconf(int) __attribute__((__deprecated__));
int mkdir() __attribute__((__deprecated__));
# endif
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment