aboutsummaryrefslogtreecommitdiff
path: root/secmem/util.h
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-10-18 18:17:19 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-10-18 18:17:19 +0200
commit6a45cdd4cc1321567d929f41721792c9e3d38401 (patch)
treec3fd44df49218df644765e624c247d16358bd474 /secmem/util.h
parentImported Upstream version 0.7.git7cc1d84 (diff)
downloadkrb5-auth-dialog-6a45cdd4cc1321567d929f41721792c9e3d38401.tar.gz
krb5-auth-dialog-6a45cdd4cc1321567d929f41721792c9e3d38401.tar.bz2
krb5-auth-dialog-6a45cdd4cc1321567d929f41721792c9e3d38401.zip
Imported Upstream version 0.7.jit26357da
Diffstat (limited to 'secmem/util.h')
-rw-r--r--secmem/util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/secmem/util.h b/secmem/util.h
index 7986c99..5d28925 100644
--- a/secmem/util.h
+++ b/secmem/util.h
@@ -23,18 +23,18 @@
#include <sys/types.h>
#ifndef HAVE_BYTE_TYPEDEF
-# undef byte
+# undef byte
# ifdef __riscos__
/* Norcroft treats char == unsigned char but char* != unsigned char* */
typedef char byte;
-# else
+# else
typedef unsigned char byte;
-# endif
+# endif
# define HAVE_BYTE_TYPEDEF
#endif
#ifndef HAVE_ULONG_TYPEDEF
-# undef ulong
+# undef ulong
typedef unsigned long ulong;
# define HAVE_ULONG_TYPEDEF
#endif
bgstack15