aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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