diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sds.c | 4 | ||||
-rw-r--r-- | src/sds.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -25,11 +25,11 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <assert.h> +#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <ctype.h> -#include <assert.h> #include "sds.h" @@ -30,8 +30,8 @@ #define SDS_MAX_PREALLOC (1024*1024) -#include <sys/types.h> #include <stdarg.h> +#include <sys/types.h> typedef char *sds; |