GCC4 build fixes.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30577 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-05-02 17:31:24 +00:00
parent 5db3b6c9b3
commit 6ed1dfa1b0
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,8 @@
#include <memory>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <Application.h>
#include <Screen.h>
@ -137,7 +139,7 @@ main(int argc, char** argv)
argc--;
argv++;
}
// find and create the test
Test* test = NULL;

View File

@ -5,6 +5,9 @@
#include "DrawingModeToString.h"
#include <string.h>
struct DrawingModeString {
const char* string;
drawing_mode mode;