decipher works now.

This commit is contained in:
NIIBE Yutaka
2010-09-08 14:24:12 +09:00
parent f543fd5ff1
commit 90a1f0379a
21 changed files with 376 additions and 67 deletions

15
src/stdlib.h Normal file
View File

@@ -0,0 +1,15 @@
/*
* stdlib.h replacement, so that we can replace malloc functions
*/
typedef unsigned int size_t;
#ifdef REPLACE_MALLOC
#define malloc my_malloc
#define free my_free
#define realloc my_realloc
#endif
extern void *malloc (size_t size);
extern void free (void *ptr);
extern void *realloc (void *ptr, size_t size);