factor/extra/tools/deploy/shaker/strip-libc.factor

11 lines
143 B
Factor
Raw Normal View History

USING: libc.private ;
IN: libc
2008-03-19 03:43:36 -04:00
: malloc (malloc) check-ptr ;
2008-03-19 03:43:36 -04:00
: realloc (realloc) check-ptr ;
2008-03-19 03:43:36 -04:00
: calloc (calloc) check-ptr ;
2007-11-04 21:24:08 -05:00
2008-03-19 03:43:36 -04:00
: free (free) ;