diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-03 16:47:24 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-03 16:47:24 -0400 |
commit | 729f64b69ec05a4ba38feb444bbde3e8e1cf8101 (patch) | |
tree | 18ba5249d085db8eefeb1598f44c51403facad84 /include/stdint.h | |
parent | volatile string fns (diff) | |
download | comus-729f64b69ec05a4ba38feb444bbde3e8e1cf8101.tar.gz comus-729f64b69ec05a4ba38feb444bbde3e8e1cf8101.tar.bz2 comus-729f64b69ec05a4ba38feb444bbde3e8e1cf8101.zip |
remove undeeded headers, add global lib.h header
Diffstat (limited to '')
-rw-r--r-- | include/stdint.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/stdint.h b/include/stdint.h deleted file mode 100644 index 25c442d..0000000 --- a/include/stdint.h +++ /dev/null @@ -1,27 +0,0 @@ -/** - * @file stdint.h - * @author Freya Murphy <freya@freyacat.org> - * @author Warren R. Carithers - * - * Integer definitions. - */ - -#ifndef _STDINT_H -#define _STDINT_H - -// standard integer sized types -typedef char int8_t; -typedef unsigned char uint8_t; -typedef short int16_t; -typedef unsigned short uint16_t; -typedef int int32_t; -typedef unsigned int uint32_t; -typedef long long int int64_t; -typedef unsigned long long int uint64_t; - -// other integer types -typedef unsigned char uchar_t; -typedef unsigned int uint_t; -typedef unsigned long int ulong_t; - -#endif /* stdint.h */ |