diff options
author | erdgeist <> | 2009-09-15 16:05:56 +0000 |
---|---|---|
committer | erdgeist <> | 2009-09-15 16:05:56 +0000 |
commit | a4b65f17eb73100a3fd4ec1f4de7cee56aa5131b (patch) | |
tree | e712fe2588c6aab9d73bd9ccac28ba6aef1593b3 | |
parent | 680ec03db07a36bdf5755090fcc163c51a0049a2 (diff) |
uintptr_t requires stdint.h, thanx ruebe
-rwxr-xr-x | vchat-client.c | 1 | ||||
-rwxr-xr-x | vchat-ui.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/vchat-client.c b/vchat-client.c index d28f38d..c80e374 100755 --- a/vchat-client.c +++ b/vchat-client.c | |||
@@ -17,6 +17,7 @@ | |||
17 | /* general includes */ | 17 | /* general includes */ |
18 | #include <sys/types.h> | 18 | #include <sys/types.h> |
19 | #include <sys/time.h> | 19 | #include <sys/time.h> |
20 | #include <stdint.h> | ||
20 | #include <time.h> | 21 | #include <time.h> |
21 | #include <string.h> | 22 | #include <string.h> |
22 | #include <unistd.h> | 23 | #include <unistd.h> |
@@ -16,6 +16,7 @@ | |||
16 | 16 | ||
17 | /* general includes */ | 17 | /* general includes */ |
18 | #include <unistd.h> | 18 | #include <unistd.h> |
19 | #include <stdint.h> | ||
19 | #include <ncurses.h> | 20 | #include <ncurses.h> |
20 | #include <signal.h> | 21 | #include <signal.h> |
21 | #include <stdlib.h> | 22 | #include <stdlib.h> |