]> git.cworth.org Git - wordgame/blobdiff - dict.c
Move the main game logic from grid.c to new word-game.c
[wordgame] / dict.c
diff --git a/dict.c b/dict.c
index cef51d4a08e1fb6163618aff084c623eef8b5ce9..a9202934035d35346f0ac75905f4baa130fff9ed 100644 (file)
--- a/dict.c
+++ b/dict.c
  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
  */
 
-/* Portably, schmortability. I want ease of programming. */
-#define _GNU_SOURCE
-#include <stdio.h>
-#include <stdlib.h>
+#include "dict.h"
+
 #include <string.h>
 #include <errno.h>
 #include <ctype.h>
 
-#include "dict.h"
-
 typedef struct _string {
     size_t size;
     char *s;