Skip to content

Commit

Permalink
Add missing integer typedefs
Browse files Browse the repository at this point in the history
  • Loading branch information
maximecb committed Oct 1, 2023
1 parent 35c5434 commit 5edeb07
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ncc/include/stdint.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#ifndef __STDINT_H__
#define __STDINT_H__

// Signed integer types
#define int8_t i8
#define int16_t i16
#define int32_t i32
#define int64_t i64

// Unsigned integer types
#define uint8_t u8
#define uint16_t u16
Expand Down

0 comments on commit 5edeb07

Please sign in to comment.