aboutsummaryrefslogtreecommitdiff
path: root/secmem/util.h
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-10-18 18:17:23 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-10-18 18:17:23 +0200
commitf1bf81e507d3319a6b31f4f679165fb72d58086a (patch)
tree8f6ac6188a950d210f8c3e8fedbf29bc343aa4d5 /secmem/util.h
parentdocument changes and release 0.7.hit7cc1d84-1 (diff)
parentImported Upstream version 0.7.jit26357da (diff)
downloadkrb5-auth-dialog-f1bf81e507d3319a6b31f4f679165fb72d58086a.tar.gz
krb5-auth-dialog-f1bf81e507d3319a6b31f4f679165fb72d58086a.tar.bz2
krb5-auth-dialog-f1bf81e507d3319a6b31f4f679165fb72d58086a.zip
Merge commit 'upstream/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