comparison src/sysfile.h @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 0293115a14e9
comparison
equal deleted inserted replaced
1:c0c6a60d29db 2:ac2d302a0011
175 #endif 175 #endif
176 #if !defined (ENCAPSULATE_ACCESS) && defined (DONT_ENCAPSULATE) 176 #if !defined (ENCAPSULATE_ACCESS) && defined (DONT_ENCAPSULATE)
177 # define sys_access access 177 # define sys_access access
178 #endif 178 #endif
179 179
180 #ifdef ENCAPSULATE_EACCESS
181 extern int sys_eaccess (CONST char *path, int mode);
182 #endif
183 #if defined (ENCAPSULATE_EACCESS) && !defined (DONT_ENCAPSULATE)
184 # undef eaccess
185 # define eaccess sys_eaccess
186 #endif
187 #if !defined (ENCAPSULATE_EACCESS) && defined (DONT_ENCAPSULATE)
188 # define sys_eaccess eaccess
189 #endif
190
180 #ifdef ENCAPSULATE_LSTAT 191 #ifdef ENCAPSULATE_LSTAT
181 extern int sys_lstat (CONST char *path, struct stat *buf); 192 extern int sys_lstat (CONST char *path, struct stat *buf);
182 #endif 193 #endif
183 #if defined (ENCAPSULATE_LSTAT) && !defined (DONT_ENCAPSULATE) 194 #if defined (ENCAPSULATE_LSTAT) && !defined (DONT_ENCAPSULATE)
184 # undef lstat 195 # undef lstat