fix include order

This commit is contained in:
Enno Rehling 2016-08-30 21:22:32 +02:00
parent a1d56acfe6
commit afeea58999
1 changed files with 3 additions and 3 deletions

View File

@ -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.
**/
#include <platform.h>
#include "lists.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <platform.h>
#include "lists.h"
typedef struct void_list {
struct void_list *next;
void *data;