summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2021-02-21 15:42:21 +0000
committerCameron Katri <me@cameronkatri.com>2021-04-13 15:28:32 -0400
commitdc16da48e78d1aacd7512c3a94cc56af21ae807a (patch)
tree99235bd072cdec0d5b3c4dff274e925f70c4c9ee
parentdf6504d6853de003e509d62fd5f7e35a625d4e1f (diff)
downloadbsdgames-darwin-dc16da48e78d1aacd7512c3a94cc56af21ae807a.tar.gz
bsdgames-darwin-dc16da48e78d1aacd7512c3a94cc56af21ae807a.tar.zst
bsdgames-darwin-dc16da48e78d1aacd7512c3a94cc56af21ae807a.zip
cgram: sort includes
-rw-r--r--cgram/cgram.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/cgram/cgram.c b/cgram/cgram.c
index 2dfc8bbe..da82c73d 100644
--- a/cgram/cgram.c
+++ b/cgram/cgram.c
@@ -29,14 +29,15 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <assert.h>
+#include <ctype.h>
+#include <curses.h>
+#include <err.h>
#include <stdio.h>
-#include <string.h>
#include <stdlib.h>
-#include <ctype.h>
+#include <string.h>
#include <time.h>
-#include <err.h>
-#include <assert.h>
-#include <curses.h>
+
#include "pathnames.h"
////////////////////////////////////////////////////////////