Browse Source

memmem, bytestring: Fix includes in _info

When I fixed up the includes in _info for nearly everything, I managed to
leave out a couple of my own modules.  This fixes them up.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
David Gibson 11 years ago
parent
commit
19bfc14906
2 changed files with 3 additions and 2 deletions
  1. 1 1
      ccan/bytestring/_info
  2. 2 1
      ccan/memmem/_info

+ 1 - 1
ccan/bytestring/_info

@@ -1,6 +1,6 @@
+#include "config.h"
 #include <stdio.h>
 #include <stdio.h>
 #include <string.h>
 #include <string.h>
-#include "config.h"
 
 
 /**
 /**
  * bytestring - simple bytestring handling
  * bytestring - simple bytestring handling

+ 2 - 1
ccan/memmem/_info

@@ -1,5 +1,6 @@
-#include <string.h>
 #include "config.h"
 #include "config.h"
+#include <stdio.h>
+#include <string.h>
 
 
 /**
 /**
  * memmem - Trivial module providing a memmem() implementation
  * memmem - Trivial module providing a memmem() implementation