diff options
Diffstat (limited to 'dmake/unix/dcache.c')
-rw-r--r-- | dmake/unix/dcache.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/dmake/unix/dcache.c b/dmake/unix/dcache.c index ae2f4e1294d3..e0ebf59da553 100644 --- a/dmake/unix/dcache.c +++ b/dmake/unix/dcache.c @@ -1,6 +1,6 @@ /* $RCSfile: dcache.c,v $ --- $Revision: 1.8 $ --- last change: $Author: vg $ $Date: 2007-09-20 14:34:51 $ +-- $Revision: 1.9 $ +-- last change: $Author: ihi $ $Date: 2007-10-15 15:52:47 $ -- -- SYNOPSIS -- Directory cache management routines. @@ -84,8 +84,6 @@ static DirEntryPtr dtab[HASH_TABLE_SIZE]; * the result then stat the file anyway and update the internal cache. */ -#ifndef __EMX__ - PUBLIC time_t CacheStat(path, force) char *path; @@ -223,5 +221,3 @@ int force; FREE(fpath); return(!ep ? (time_t)0L : ((STOBOOL(Augmake) && ep->isdir)?0L:ep->mtime)); } - -#endif // __EMX__ |