Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17866
Modified Files: Tag: desiredata m_pd.h kernel.c Log Message: removed getzbytes
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.4.4.11.2.33.2.11 retrieving revision 1.4.4.11.2.33.2.12 diff -C2 -d -r1.4.4.11.2.33.2.11 -r1.4.4.11.2.33.2.12 *** m_pd.h 13 Dec 2006 04:38:58 -0000 1.4.4.11.2.33.2.11 --- m_pd.h 13 Dec 2006 23:48:12 -0000 1.4.4.11.2.33.2.12 *************** *** 259,267 **** #define te_type type
- #define T_TEXT 0 /* Comment */ - #define T_OBJECT 1 /* ObjectBox or other */ - #define T_MESSAGE 2 /* MessageBox */ - #define T_ATOM 3 /* FloatBox or SymbolBox */ - #define ob_outlet te_outlet #define ob_inlet te_inlet --- 259,262 ---- *************** *** 315,319 **** /* --------------- memory management -------------------- */ EXTERN void *getbytes(size_t nbytes); - EXTERN void *getzbytes(size_t nbytes); EXTERN void *copybytes(void *src, size_t nbytes); EXTERN void freebytes(void *x, size_t nbytes); --- 310,313 ----
Index: kernel.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/kernel.c,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** kernel.c 13 Dec 2006 20:14:32 -0000 1.1.2.3 --- kernel.c 13 Dec 2006 23:48:12 -0000 1.1.2.4 *************** *** 29,37 **** }
- void *getzbytes(size_t nbytes) /* obsolete name */ - { - return (getbytes(nbytes)); - } - void *copybytes(void *src, size_t nbytes) { --- 29,32 ----