forked from github/server
fix include order
This commit is contained in:
parent
a1d56acfe6
commit
afeea58999
1 changed files with 3 additions and 3 deletions
|
@ -16,13 +16,13 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
#include <platform.h>
|
||||||
|
#include "lists.h"
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include <platform.h>
|
|
||||||
#include "lists.h"
|
|
||||||
|
|
||||||
typedef struct void_list {
|
typedef struct void_list {
|
||||||
struct void_list *next;
|
struct void_list *next;
|
||||||
void *data;
|
void *data;
|
||||||
|
|
Loading…
Reference in a new issue