summaryrefslogtreecommitdiffstats
path: root/src/interp.c
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-03-17 22:32:59 -0300
committerandmarti1424 <andmarti@gmail.com>2017-03-17 22:32:59 -0300
commita6c36fcff67200304a336f49a78d6dbe12c7dcba (patch)
treeac4de796fb692f70cce72d3aa2892b8c8fdcc93f /src/interp.c
parent1c770a1e7806e9ad5b6589d3323f8ead5a091205 (diff)
Ordered includes
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/interp.c b/src/interp.c
index 3757fd9..cc5b8a8 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -8,22 +8,22 @@
*/
#include <sys/types.h>
-
-#ifdef IEEE_MATH
-#include <ieeefp.h>
-#endif
-
#include <math.h>
#include <signal.h>
#include <setjmp.h>
#include <ctype.h>
#include <errno.h>
-
#include <time.h>
#include <string.h>
-
#include <stdlib.h>
#include <ncurses.h>
+#include <unistd.h>
+#include <regex.h>
+
+#ifdef IEEE_MATH
+#include <ieeefp.h>
+#endif
+
#include "sc.h"
#include "macros.h"
#include "color.h"
@@ -35,12 +35,9 @@
#include "lex.h" // for atocol
#include "interp.h"
#include "utils/string.h"
-#include <unistd.h>
-#include <regex.h>
+#include "trigger.h"
-#include "trigger.h"
#ifdef XLUA
-//void do_trigger( struct ent *p , int rw);
#include "lua.h"
#endif