diff options
author | tim <tim> | 2001-03-19 02:27:26 +0000 |
---|---|---|
committer | tim <tim> | 2001-03-19 02:27:26 +0000 |
commit | 398715d7303121d316c5ea131f2db4c7b8c11717 (patch) | |
tree | f682777fc1974a5d780a97626416944907823922 /defines.h | |
parent | d449d804b0be76333d7bf4714152411fa1dfcf02 (diff) | |
download | openssh-398715d7303121d316c5ea131f2db4c7b8c11717.tar.gz |
move HAVE_LONG_LONG_INT where it works
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 |