summaryrefslogtreecommitdiffstats
path: root/defines.h
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2001-03-18 18:27:26 -0800
committerTim Rice <tim@multitalents.net>2001-03-18 18:27:26 -0800
commitd19a75abd0dc0487f9b6235b55a736f0386481c3 (patch)
treef76344d17a31ff78271d29323a8e8e225327533e /defines.h
parent753b1c05a5cae0b38289d9a7d080c1d931c9ce6c (diff)
move HAVE_LONG_LONG_INT where it works
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/defines.h b/defines.h
index 60896512..9d58db38 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
-/* $Id: defines.h,v 1.58 2001/03/19 01:56:14 djm Exp $ */
+/* $Id: defines.h,v 1.59 2001/03/19 02:27:26 tim Exp $ */
/* Some platforms need this for the _r() functions */
#if !defined(_REENTRANT) && !defined(SNI)
@@ -125,9 +125,6 @@ enum
/* If sys/types.h does not supply intXX_t, supply them ourselves */
/* (or die trying) */
-#ifdef SIZEOF_LONG_LONG_INT
-# define HAVE_LONG_LONG_INT
-#endif
#ifndef HAVE_U_INT
typedef unsigned int u_int;
@@ -202,6 +199,7 @@ typedef long int int64_t;
# if (SIZEOF_LONG_LONG_INT == 8)
typedef long long int int64_t;
# define HAVE_INT64_T 1
+# define HAVE_LONG_LONG_INT
# endif
# endif
#endif