Removed C99 stdint

This commit is contained in:
Nate Choe
2022-03-21 13:30:59 -05:00
parent e60747a9f8
commit 266a087655
3 changed files with 4 additions and 6 deletions

View File

@@ -19,7 +19,6 @@
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdint.h>
#include <swebs/util.h>
#include <swebs/types.h>
@@ -63,7 +62,7 @@ int istrcmp(char *s1, char *s2) {
}
RequestType getType(char *str) {
uint64_t type;
unsigned long type;
int i;
if (strlen(str) >= 8)
return INVALID;