diff options
Diffstat (limited to 'plugins/sql.c')
| -rw-r--r-- | plugins/sql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sql.c b/plugins/sql.c index 0c563e2..130317f 100644 --- a/plugins/sql.c +++ b/plugins/sql.c @@ -1,14 +1,14 @@ #include "zprep_plugin.h" +#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <ctype.h> typedef struct Col { char name[32]; - char type[32]; + char type[32]; struct Col *next; } Col; |
