diff options
| author | Alexander Barton <alex@barton.de> | 2005-03-19 14:09:32 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2005-03-19 14:09:32 +0000 |
| commit | 795802f2b0c4a82fb499e101da055a55a202e1fb (patch) | |
| tree | adcd5ec6efaacf7bf62c2a58eb73ffb3bdc8b756 /configure.in | |
| parent | 1869766331ff55fb91368d9ce3d5632e5904fbdf (diff) | |
| download | ngircd-795802f2b0c4a82fb499e101da055a55a202e1fb.tar.gz ngircd-795802f2b0c4a82fb499e101da055a55a202e1fb.zip | |
Removed indentation of preprocessor statements in test for socklen_t.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index cbd9fec2..2dbaad7e 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: configure.in,v 1.104 2004/12/26 00:14:33 alex Exp $ +# $Id: configure.in,v 1.105 2005/03/19 14:09:32 alex Exp $ # # -- Initialisation -- @@ -91,8 +91,8 @@ AC_CHECK_HEADERS([arpa/inet.h ctype.h malloc.h stdint.h varargs.h]) AC_MSG_CHECKING(whether socklen_t exists) AC_TRY_COMPILE([ - #include <sys/socket.h> - #include <sys/types.h> +#include <sys/socket.h> +#include <sys/types.h> ],[ socklen_t a, b; a = 2; b = 4; a += b; |