summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2009-09-15 16:05:56 +0000
committererdgeist <>2009-09-15 16:05:56 +0000
commita4b65f17eb73100a3fd4ec1f4de7cee56aa5131b (patch)
treee712fe2588c6aab9d73bd9ccac28ba6aef1593b3
parent680ec03db07a36bdf5755090fcc163c51a0049a2 (diff)
uintptr_t requires stdint.h, thanx ruebe
-rwxr-xr-xvchat-client.c1
-rwxr-xr-xvchat-ui.c1
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>
diff --git a/vchat-ui.c b/vchat-ui.c
index 4456f37..d118fc5 100755
--- a/vchat-ui.c
+++ b/vchat-ui.c
@@ -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>