diff -r 69cc0166be8d -r 555a8d8db228 hedgewars/pas2c.h --- a/hedgewars/pas2c.h Thu Apr 19 23:36:20 2012 +0400 +++ b/hedgewars/pas2c.h Fri Apr 20 01:50:47 2012 +0400 @@ -38,3 +38,11 @@ typedef LongInt * PLongInt; typedef Integer * PInteger; +#define new(a) __new(a, sizeof(*(a))) +void __new(pointer p); + +#define FillChar(a, b, c) __FillChar(&(a), b, c) + +void __FillChar(pointer p, int size, char fill); +string255 _strconcat(string255 a, string255 b); +