Mercurial > hg > xemacs-beta
comparison src/sysfile.h @ 16:0293115a14e9 r19-15b91
Import from CVS: tag r19-15b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:20 +0200 |
parents | ac2d302a0011 |
children | 4be1180a9e89 |
comparison
equal
deleted
inserted
replaced
15:ad457d5f7d04 | 16:0293115a14e9 |
---|---|
287 # define unlink sys_unlink | 287 # define unlink sys_unlink |
288 #endif | 288 #endif |
289 #if !defined (ENCAPSULATE_UNLINK) && defined (DONT_ENCAPSULATE) | 289 #if !defined (ENCAPSULATE_UNLINK) && defined (DONT_ENCAPSULATE) |
290 # define sys_unlink unlink | 290 # define sys_unlink unlink |
291 #endif | 291 #endif |
292 | |
293 #ifdef ENCAPSULATE_EXECVP | |
294 extern int sys_execvp (CONST char *, char * CONST *); | |
295 #endif | |
296 #if defined (ENCAPSULATE_EXECVP) && !defined (DONT_ENCAPSULATE) | |
297 # undef execvp | |
298 # define execvp sys_execvp | |
299 #endif | |
300 #if !defined (ENCAPSULATE_EXECVP) && defined (DONT_ENCAPSULATE) | |
301 # define sys_execvp execvp | |
302 #endif |