Module Name: src
Committed By: rillig
Date: Sun Feb 21 15:42:21 UTC 2021
Modified Files:
src/games/cgram: cgram.c
Log Message:
cgram: sort includes
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/games/cgram/cgram.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/cgram/cgram.c
diff -u src/games/cgram/cgram.c:1.4 src/games/cgram/cgram.c:1.5
--- src/games/cgram/cgram.c:1.4 Sun Feb 21 15:41:04 2021
+++ src/games/cgram/cgram.c Sun Feb 21 15:42:21 2021
@@ -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"
////////////////////////////////////////////////////////////