summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-11-29 11:56:35 +1100
committerDamien Miller <djm@mindrot.org>2000-11-29 11:56:35 +1100
commit3f62abaee876bb4ef7450799cdee1081297aae51 (patch)
treef5a7cfa07969976a003761a662681f11bfccbc87 /defines.h
parenta2e53ccb64c42a635b4618b592e470a02c0142b0 (diff)
downloadopenssh-git-3f62abaee876bb4ef7450799cdee1081297aae51.tar.gz
- (djm) bsd-rresvport.c bzero -> memset
- (djm) Don't fail in defines.h on absence of 64 bit types (we will still fail during compilation of sftp-server). - (djm) Fail if ar is not found during configure
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/defines.h b/defines.h
index 3626bd90..642b0079 100644
--- a/defines.h
+++ b/defines.h
@@ -170,8 +170,6 @@ typedef long int int64_t;
# if (SIZEOF_LONG_LONG_INT == 8)
typedef long long int int64_t;
# define HAVE_INTXX_T 1
-# else
-# error "64 bit int type not found."
# endif
# endif
#endif
@@ -182,8 +180,6 @@ typedef unsigned long int u_int64_t;
# if (SIZEOF_LONG_LONG_INT == 8)
typedef unsigned long long int u_int64_t;
# define HAVE_U_INTXX_T 1
-# else
-# error "64 bit int type not found."
# endif
# endif
#endif