1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-30 20:29:25 +00:00

Changed the location of unittest.h

This commit is contained in:
IrgendwerA8 2017-02-28 08:05:11 +01:00
parent 3d28f5ca90
commit 09de875330
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#include <unittest.h>
#include <string.h>
#include "unittest.h"
#define SourceStringSize 257 // test correct page passing (>256)

View File

@ -1,5 +1,5 @@
#include <unittest.h>
#include <string.h>
#include "unittest.h"
static char TestString[] = "01234567890123456789"; // two times the same string
static char Found[256];