summaryrefslogtreecommitdiff
path: root/dmake/unix
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-09-20 13:34:51 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-09-20 13:34:51 +0000
commit23fbb40987d460ca1e980cbc9c71b6b16c5387db (patch)
treec5354779cd264c4f7f44fef40aa3542cccb9078c /dmake/unix
parent361c0aa53ffb8b5f7d123e8b9c10edf45f347321 (diff)
INTEGRATION: CWS os2port01 (1.5.18); FILE MERGED
2007/08/08 08:43:07 obr 1.5.18.2: RESYNC: (1.5-1.7); FILE MERGED 2006/12/28 14:54:34 ydario 1.5.18.1: OS/2 initial import.
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__