aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mpicalc.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-05-24 18:38:35 +0000
committerDavid Shaw <[email protected]>2003-05-24 18:38:35 +0000
commitea35e3b65f5e741ce2feebd53831681f9e807884 (patch)
tree43d449ca34f21b926a5233000897bc3cc5d8bfcd /tools/mpicalc.c
parent* bithelp.h, des.c, random.c, rndlinux.c, sha1.c, blowfish.c, elgamal.c, (diff)
downloadgnupg-ea35e3b65f5e741ce2feebd53831681f9e807884.tar.gz
gnupg-ea35e3b65f5e741ce2feebd53831681f9e807884.zip
* bftest.c, crlf.c, mk-tdata.c, mpicalc.c, shmtest.c: Edit all
preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
Diffstat (limited to '')
-rw-r--r--tools/mpicalc.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/tools/mpicalc.c b/tools/mpicalc.c
index 2817c9932..e582ff609 100644
--- a/tools/mpicalc.c
+++ b/tools/mpicalc.c
@@ -65,15 +65,15 @@ strusage( int level )
static void
i18n_init(void)
{
- #ifdef ENABLE_NLS
- #ifdef HAVE_LC_MESSAGES
- setlocale( LC_MESSAGES, "" );
- #else
- setlocale( LC_ALL, "" );
- #endif
- bindtextdomain( PACKAGE, G10_LOCALEDIR );
- textdomain( PACKAGE );
- #endif
+#ifdef ENABLE_NLS
+#ifdef HAVE_LC_MESSAGES
+ setlocale( LC_MESSAGES, "" );
+#else
+ setlocale( LC_ALL, "" );
+#endif
+ bindtextdomain( PACKAGE, G10_LOCALEDIR );
+ textdomain( PACKAGE );
+#endif
}
@@ -386,5 +386,3 @@ main(int argc, char **argv)
mpi_free(stack[i]);
return 0;
}
-
-