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)
- (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 3626bd90d..642b00797 100644
--- a/defines.h
+++ b/defines.h
@@ -170,8 +170,6 @@ typedef long int int64_t;
170# if (SIZEOF_LONG_LONG_INT == 8) 170# if (SIZEOF_LONG_LONG_INT == 8)
171typedef long long int int64_t; 171typedef long long int int64_t;
172# define HAVE_INTXX_T 1 172# define HAVE_INTXX_T 1
173# else
174# error "64 bit int type not found."
175# endif 173# endif
176# endif 174# endif
177#endif 175#endif
@@ -182,8 +180,6 @@ typedef unsigned long int u_int64_t;
182# if (SIZEOF_LONG_LONG_INT == 8) 180# if (SIZEOF_LONG_LONG_INT == 8)
183typedef unsigned long long int u_int64_t; 181typedef unsigned long long int u_int64_t;
184# define HAVE_U_INTXX_T 1 182# define HAVE_U_INTXX_T 1
185# else
186# error "64 bit int type not found."
187# endif 183# endif
188# endif 184# endif
189#endif 185#endif