]> code.delx.au - gnu-emacs/commitdiff
* systime.h: Borrow CPP sequence from getdate.y to include the
authorJim Blandy <jimb@redhat.com>
Sat, 15 May 1993 20:47:28 +0000 (20:47 +0000)
committerJim Blandy <jimb@redhat.com>
Sat, 15 May 1993 20:47:28 +0000 (20:47 +0000)
proper combination of <time.h> and <sys/time.h>.

src/systime.h

index 3f40b12c0219a6b878c1407ad1b8ea8d7fe2b9e0..faf5d139956bdc72656313df0695097b9db3bfd3 100644 (file)
@@ -17,12 +17,14 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs; see the file COPYING.  If not, write to
 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#ifdef TM_IN_SYS_TIME
+#ifdef TIME_WITH_SYS_TIME
 #include <sys/time.h>
-#else
 #include <time.h>
+#else
 #ifdef HAVE_SYS_TIME_H
 #include <sys/time.h>
+#else
+#include <time.h>
 #endif
 #endif