Skip to content

Commit

Permalink
Merge pull request #23654 from compnerd/enhance
Browse files Browse the repository at this point in the history
test: augment the SDK sysroot for Windows
  • Loading branch information
compnerd authored Mar 29, 2019
2 parents ebef3c5 + 106aa5d commit e7aee37
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Inputs/clang-importer-sdk/usr/include/ctypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ typedef SInt32 OSStatus;

// Types from stdint.h.
#include <stdint.h>
#if defined(_WIN32)
typedef __INTPTR_TYPE__ intptr_t;
typedef __UINTPTR_TYPE__ uintptr_t;
#endif
STDLIB_TEST(__UINT8_TYPE__, uint8_t);
STDLIB_TEST(__UINT16_TYPE__, uint16_t);
STDLIB_TEST(__UINT32_TYPE__, uint32_t);
Expand Down

0 comments on commit e7aee37

Please sign in to comment.