8000 Solaris doesn't necessarily have stdint.h, use inttypes.h by jacquesg · Pull Request #184 · nodejs/http-parser · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.

Solaris doesn't necessarily have stdint.h, use inttypes.h #184

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Solaris 9 doesn't have stdint.h, use inttypes.h
  • Loading branch information
jacquesg committed Dec 27, 2016
commit af2ff025b36e5a57cf736f1270bec53c26dfdd07
2 changes: 2 additions & 0 deletions http_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#elif (defined(__sun) || defined(__sun__)) && defined(__SunOS_5_9)
#include <sys/inttypes.h>
#else
#include <stdint.h>
#endif
Expand Down
0