summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2021-11-24 19:50:12 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2021-11-24 19:54:19 +0000
commit3832f7edc4cd117642ad7890eb1476d1f9d8e918 (patch)
treeaaefd2d7e764fe293aeb47ff9774db9b2f6b2510
parenta83ed529003818e3f4ce70a68752a34c66461de2 (diff)
downloadlibnsgif-3832f7edc4cd117642ad7890eb1476d1f9d8e918.tar.gz
libnsgif-3832f7edc4cd117642ad7890eb1476d1f9d8e918.tar.bz2
GIF: Reorder #includes.
-rw-r--r--src/libnsgif.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libnsgif.c b/src/libnsgif.c
index dbc066a..ecddf78 100644
--- a/src/libnsgif.c
+++ b/src/libnsgif.c
@@ -8,14 +8,14 @@
* http://www.opensource.org/licenses/mit-license.php
*/
-#include <stdbool.h>
+#include <assert.h>
#include <stdint.h>
-#include <string.h>
#include <stdlib.h>
-#include <assert.h>
+#include <string.h>
+#include <stdbool.h>
-#include "libnsgif.h"
#include "lzw.h"
+#include "libnsgif.h"
/**
*