- Updates (fast forwarding to latest Scyther from svn)

This commit is contained in:
Cas Cremers 2007-05-18 13:55:11 +02:00
parent 814fbf31cd
commit 7c8ca527b2
2 changed files with 15 additions and 0 deletions

1
gui/Gui/Version.py Normal file
View File

@ -0,0 +1 @@
SCYTHER_GUI_VERSION = "1.0-beta7"

14
src/mymalloc.h Normal file
View File

@ -0,0 +1,14 @@
/**
* Malloc on all platforms except Apple ones
*/
#ifndef MYMALLOC
#define MYMALLOC
#ifndef __APPLE__
#include <malloc.h>
#else
#include <stdlib.h>
#endif
#endif