Add proper include file for memset.

This commit is contained in:
riccardom 2009-05-02 12:22:35 +00:00
parent 1366b34d4e
commit 4798e034f8
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@
#include <algorithm>
#include <assert.h>
#include <math.h>
#include <string.h>
#include "armcpu.h"
#include "debug.h"
#include "gfx3d.h"
@ -2364,4 +2365,4 @@ bool gfx3d_loadstate(std::istream* is, int size)
gfx3d.vertlist->count=0;
return true;
}
}