summaryrefslogtreecommitdiffstats
path: root/dmake/unix
diff options
context:
space:
mode:
Diffstat (limited to 'dmake/unix')
-rw-r--r--dmake/unix/dcache.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/dmake/unix/dcache.c b/dmake/unix/dcache.c
index 169d037303c3..ae2f4e1294d3 100644
--- a/dmake/unix/dcache.c
+++ b/dmake/unix/dcache.c
@@ -1,6 +1,6 @@
/* $RCSfile: dcache.c,v $
--- $Revision: 1.7 $
--- last change: $Author: obo $ $Date: 2007-06-12 06:08:51 $
+-- $Revision: 1.8 $
+-- last change: $Author: vg $ $Date: 2007-09-20 14:34:51 $
--
-- SYNOPSIS
-- Directory cache management routines.
@@ -84,6 +84,8 @@ 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;
@@ -221,3 +223,5 @@ int force;
FREE(fpath);
return(!ep ? (time_t)0L : ((STOBOOL(Augmake) && ep->isdir)?0L:ep->mtime));
}
+
+#endif // __EMX__