comparison src/systime.h @ 29559:80c2703cecd1

(EMACS_SYSTIME_H): Renamed from _SYSTIME_H.
author Dave Love <fx@gnu.org>
date Sun, 11 Jun 2000 17:36:25 +0000
parents e7dca295c541
children 668a501f94a2
comparison
equal deleted inserted replaced
29558:5ce16130658d 29559:80c2703cecd1
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to 17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */ 19 Boston, MA 02111-1307, USA. */
20 20
21 #ifndef _SYSTIME_H 21 #ifndef EMACS_SYSTIME_H
22 #define _SYSTIME_H 22 #define EMACS_SYSTIME_H
23 23
24 #ifdef TIME_WITH_SYS_TIME 24 #ifdef TIME_WITH_SYS_TIME
25 #include <sys/time.h> 25 #include <sys/time.h>
26 #include <time.h> 26 #include <time.h>
27 #else 27 #else
164 #define EMACS_TIME_GT(T1, T2) (EMACS_TIME_CMP (T1, T2) > 0) 164 #define EMACS_TIME_GT(T1, T2) (EMACS_TIME_CMP (T1, T2) > 0)
165 #define EMACS_TIME_GE(T1, T2) (EMACS_TIME_CMP (T1, T2) >= 0) 165 #define EMACS_TIME_GE(T1, T2) (EMACS_TIME_CMP (T1, T2) >= 0)
166 #define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0) 166 #define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0)
167 #define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0) 167 #define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0)
168 168
169 #endif /* _SYSTIME_H */ 169 #endif /* EMACS_SYSTIME_H */