summaryrefslogtreecommitdiff
path: root/com32/include/bitsize
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:21 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:21 -0700
commit28b14effe0b918bd07389877980e5d7dd1cad336 (patch)
tree93a9ba7f01e3c70c2504d7126abc1608b1e0ce8c /com32/include/bitsize
parent7aba64e0a4bab7017a2bb3dfaf5c0c98acc2b8df (diff)
downloadsyslinux-28b14effe0b918bd07389877980e5d7dd1cad336.tar.gz
Run Nindent on com32/include/bitsize/stdint.h
Automatically reformat com32/include/bitsize/stdint.h using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/include/bitsize')
-rw-r--r--com32/include/bitsize/stdint.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/com32/include/bitsize/stdint.h b/com32/include/bitsize/stdint.h
index bdfe1328..8cbfc5dd 100644
--- a/com32/include/bitsize/stdint.h
+++ b/com32/include/bitsize/stdint.h
@@ -5,24 +5,24 @@
#ifndef _BITSIZE_STDINT_H
#define _BITSIZE_STDINT_H
-typedef signed char int8_t;
-typedef short int int16_t;
-typedef int int32_t;
-typedef long long int int64_t;
+typedef signed char int8_t;
+typedef short int int16_t;
+typedef int int32_t;
+typedef long long int int64_t;
-typedef unsigned char uint8_t;
-typedef unsigned short int uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long long int uint64_t;
+typedef unsigned char uint8_t;
+typedef unsigned short int uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned long long int uint64_t;
-typedef int int_fast16_t;
-typedef int int_fast32_t;
+typedef int int_fast16_t;
+typedef int int_fast32_t;
-typedef unsigned int uint_fast16_t;
-typedef unsigned int uint_fast32_t;
+typedef unsigned int uint_fast16_t;
+typedef unsigned int uint_fast32_t;
-typedef int intptr_t;
-typedef unsigned int uintptr_t;
+typedef int intptr_t;
+typedef unsigned int uintptr_t;
#define __INT64_C(c) c ## LL
#define __UINT64_C(c) c ## ULL