aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-09-01 18:46:19 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-09-01 18:46:19 +0000
commitc4569334db4919f607f99b26244c710da5bc0d5c (patch)
tree576b9b858d6173dd74f21aad82c5eb3ecd92301b
parent6569bd48e55e513307581a480a6280940aeaa663 (diff)
sort includes
-rw-r--r--spectrogram.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/spectrogram.c b/spectrogram.c
index 284d685..238015d 100644
--- a/spectrogram.c
+++ b/spectrogram.c
@@ -21,18 +21,19 @@
#include <sys/types.h>
#include <sys/time.h>
+
#include <err.h>
-#include <stdio.h>
+#include <math.h>
+#include <signal.h>
#include <stdarg.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <math.h>
-#include <signal.h>
-#include "sio.h"
-#include "fft.h"
#include "cms.h"
+#include "fft.h"
+#include "sio.h"
#define HGAP 4
#define VGAP 1