summaryrefslogtreecommitdiff
path: root/src/systime.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-08-19 03:54:51 +0000
committerJim Blandy <jimb@redhat.com>1992-08-19 03:54:51 +0000
commitb326ab7c03a159c39268d6336a5ffd14188c2959 (patch)
tree814641d09e5cf867d1b0a4f867b28ec8ff84eba7 /src/systime.h
parentfea425b9ddc3534a501a86de782ecabf406ebb47 (diff)
downloademacs-b326ab7c03a159c39268d6336a5ffd14188c2959.tar.gz
*** empty log message ***
Diffstat (limited to 'src/systime.h')
-rw-r--r--src/systime.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/systime.h b/src/systime.h
index b5a850da1dc..9dab2deacfa 100644
--- a/src/systime.h
+++ b/src/systime.h
@@ -102,7 +102,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define EMACS_TIME int
#define EMACS_SECS(time) (time)
+#define EMACS_USECS(time) 0
#define EMACS_SET_SECS(time, seconds) ((time) = (seconds))
+#define EMACS_SET_USECS(time, usecs) 0
#define EMACS_GET_TIME(t) ((t) = time ((long *) 0))
#define EMACS_ADD_TIME(dest, src1, src2) ((dest) = (src1) + (src2))
@@ -118,7 +120,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define EMACS_SET_UTIMES(path, atime, mtime) \
{ \
- struct time_t tv[2]; \
+ time_t tv[2]; \
tv[0] = EMACS_SECS (atime); \
tv[1] = EMACS_SECS (mtime); \
utime ((path), tv); \