From: Christian Heller <c.heller@plomlompom.de>
Date: Thu, 27 Jun 2013 23:07:02 +0000 (+0200)
Subject: Removed library dependencies made obsolete by last commit.
X-Git-Tag: tce~1186
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/%7B%7Bdb.prefix%7D%7D/static/%7B%7Bprefix%7D%7D/conditions?a=commitdiff_plain;h=9c2ece5e79a96e3b8b97bed6c0dd378602cf9ff1;p=plomrogue

Removed library dependencies made obsolete by last commit.
---

diff --git a/src/actors.c b/src/actors.c
index 0552587..1f8f28e 100644
--- a/src/actors.c
+++ b/src/actors.c
@@ -1,7 +1,6 @@
 #include "actors.h"
 #include <stdlib.h>
 #include <stdio.h>
-#include <stdint.h>
 #include "yx_uint16.h"
 #include "roguelike.h"
 
diff --git a/src/actors.h b/src/actors.h
index 51d6612..d88c66f 100644
--- a/src/actors.h
+++ b/src/actors.h
@@ -1,7 +1,6 @@
 #ifndef ACTORS_H
 #define ACTORS_H
 
-#include <stdint.h>
 #include "yx_uint16.h"
 
 struct World;