diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-02-06 23:37:34 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-02-06 23:37:34 +0000 |
commit | 28dd1b41cc43dba03b9d5d2b5657a6fa1180e802 (patch) | |
tree | d2d3268c3b9f30178cf7383efa164a3858fad2bd /nt | |
parent | 9e598d898ebb3bee3cdb745c186685078dd29ad0 (diff) | |
download | emacs-28dd1b41cc43dba03b9d5d2b5657a6fa1180e802.tar.gz |
Add include protection.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/inc/sys/time.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nt/inc/sys/time.h b/nt/inc/sys/time.h index dc270998609..441b3faa650 100644 --- a/nt/inc/sys/time.h +++ b/nt/inc/sys/time.h @@ -1,3 +1,6 @@ +#ifndef SYS_TIME_H_INCLUDED +#define SYS_TIME_H_INCLUDED + /* * sys/time.h doesn't exist on NT */ @@ -15,4 +18,6 @@ struct timezone void gettimeofday (struct timeval *, struct timezone *); +#endif /* SYS_TIME_H_INCLUDED */ + /* end of sys/time.h */ |