diff options
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/systime.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 81ac1c418cb..24705e7247a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-06-11 Dave Love <fx@gnu.org> + + * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H. + 2000-06-11 Eli Zaretskii <eliz@is.elta.co.il> * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead. diff --git a/src/systime.h b/src/systime.h index 2f9ace521e2..59fc8a9628a 100644 --- a/src/systime.h +++ b/src/systime.h @@ -18,8 +18,8 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef _SYSTIME_H -#define _SYSTIME_H +#ifndef EMACS_SYSTIME_H +#define EMACS_SYSTIME_H #ifdef TIME_WITH_SYS_TIME #include <sys/time.h> @@ -166,4 +166,4 @@ extern int set_file_times (); #define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0) #define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0) -#endif /* _SYSTIME_H */ +#endif /* EMACS_SYSTIME_H */ |