[PD-cvs] externals/zexy/src a2l.c, 1.6, 1.7 atoi.c, 1.6, 1.7 list2lists.c, 1.1, 1.2 list2symbol.c, 1.11, 1.12 lister.c, 1.9, 1.10 listfind.c, 1.1, 1.2 niagara.c, 1.4, 1.5 packel.c, 1.5, 1.6 repack.c, 1.6, 1.7 sfplay.c, 1.10, 1.11 unpack.c, 1.2, 1.3

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Thu Jan 3 12:27:40 CET 2008


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4590

Modified Files:
	a2l.c atoi.c list2lists.c list2symbol.c lister.c listfind.c 
	niagara.c packel.c repack.c sfplay.c unpack.c 
Log Message:
cleanup includes


Index: sfplay.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/sfplay.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** sfplay.c	3 Jan 2008 11:15:25 -0000	1.10
--- sfplay.c	3 Jan 2008 11:27:37 -0000	1.11
***************
*** 62,67 ****
  #include "zexy.h"
  
- /*#include "m_imp.h"*/
- 
  #define DACBLKSIZE 64 /* in m_imp.h, but error if it is included it here*/
  
--- 62,65 ----

Index: lister.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/lister.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** lister.c	1 Oct 2007 11:12:02 -0000	1.9
--- lister.c	3 Jan 2008 11:27:37 -0000	1.10
***************
*** 19,23 ****
  
  #include "zexy.h"
- #include <string.h>
  
  #ifdef HAVE_ALLOCA_H
--- 19,22 ----

Index: unpack.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/unpack.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** unpack.c	21 May 2007 11:58:17 -0000	1.2
--- unpack.c	3 Jan 2008 11:27:37 -0000	1.3
***************
*** 19,27 ****
  
  #include "zexy.h"
- #include <string.h>
  
  /* ------------------------- zunpack ------------------------------- */
  
! /* convert anythings to lists, pass through the rest */
  
  static t_class *zunpack_class;
--- 19,26 ----
  
  #include "zexy.h"
  
  /* ------------------------- zunpack ------------------------------- */
  
! /* like pack, but does no type-checking */
  
  static t_class *zunpack_class;
***************
*** 41,45 ****
      outlet_list(x->x_out[count], gensym("list"), 1, argv+count);
    }
- 
  }
  
--- 40,43 ----

Index: niagara.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/niagara.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** niagara.c	14 Mar 2007 09:08:56 -0000	1.4
--- niagara.c	3 Jan 2008 11:27:37 -0000	1.5
***************
*** 18,30 ****
  
  #include "zexy.h"
- #include <string.h>
- #include <memory.h>
- 
  
  /* ------------------------- niagara ------------------------------- */
  
  /*
! divides a package into 2 sub-packages at a specified point
! like the niagara-falls, some water goes down to the left side, the rest to the right side, devided by the rock
  */
  
--- 18,29 ----
  
  #include "zexy.h"
  
  /* ------------------------- niagara ------------------------------- */
  
  /*
!   divides a package into 2 sub-packages at a specified point
!   like the niagara-falls, some water goes down to the left side, the rest to the right side, devided by the rock
! 
!   nowadays you can do this with [list split] (though this cannot handle negative indices)
  */
  

Index: list2lists.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/list2lists.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** list2lists.c	26 Jul 2007 10:24:38 -0000	1.1
--- list2lists.c	3 Jan 2008 11:27:37 -0000	1.2
***************
*** 19,23 ****
  
  #include "zexy.h"
- #include <string.h>
  
  //#define DEBUG
--- 19,22 ----

Index: packel.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/packel.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** packel.c	10 May 2007 13:57:56 -0000	1.5
--- packel.c	3 Jan 2008 11:27:37 -0000	1.6
***************
*** 25,32 ****
  
  #include "zexy.h"
- #include <string.h>
- // do we need memory.h ?
- #include <memory.h>
- 
  
  static t_class *packel_class;
--- 25,28 ----
***************
*** 108,113 ****
  
    if(x->position)freebytes(x->position, x->count*sizeof(t_float));
!   if(x->x_inlet)   freebytes(x->x_inlet, x->count*sizeof(t_inlet*));
!   if(x->x_outlet)  freebytes(x->x_outlet, x->count*sizeof(t_outlet*));
  
  }
--- 104,109 ----
  
    if(x->position)freebytes(x->position, x->count*sizeof(t_float));
!   if(x->x_inlet) freebytes(x->x_inlet, x->count*sizeof(t_inlet*));
!   if(x->x_outlet)freebytes(x->x_outlet, x->count*sizeof(t_outlet*));
  
  }

Index: listfind.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/listfind.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** listfind.c	26 Jul 2007 10:24:38 -0000	1.1
--- listfind.c	3 Jan 2008 11:27:37 -0000	1.2
***************
*** 19,23 ****
  
  #include "zexy.h"
- #include <string.h>
  
  //#define DEBUG
--- 19,22 ----

Index: repack.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/repack.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** repack.c	30 Oct 2007 09:26:46 -0000	1.6
--- repack.c	3 Jan 2008 11:27:37 -0000	1.7
***************
*** 25,30 ****
  #include "zexy.h"
  #include <string.h>
- #include <memory.h>
- 
  
  /* -------------------- repack ------------------------------ */
--- 25,28 ----

Index: list2symbol.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/list2symbol.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** list2symbol.c	14 Mar 2007 09:08:56 -0000	1.11
--- list2symbol.c	3 Jan 2008 11:27:37 -0000	1.12
***************
*** 16,20 ****
  
  #include "zexy.h"
- #include <stdlib.h>
  #include <string.h>
  
--- 16,19 ----

Index: atoi.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/atoi.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** atoi.c	30 Oct 2007 09:26:46 -0000	1.6
--- atoi.c	3 Jan 2008 11:27:37 -0000	1.7
***************
*** 18,26 ****
  #include "zexy.h"
  #include <stdlib.h>
- #include <string.h>
  
  /*
   * atoi : ascii to integer
! */
  
  /* atoi ::  ascii to integer */
--- 18,25 ----
  #include "zexy.h"
  #include <stdlib.h>
  
  /*
   * atoi : ascii to integer
!  */
  
  /* atoi ::  ascii to integer */

Index: a2l.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/a2l.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** a2l.c	19 Mar 2007 15:56:56 -0000	1.6
--- a2l.c	3 Jan 2008 11:27:37 -0000	1.7
***************
*** 23,27 ****
  /* ------------------------- a2l ------------------------------- */
  
! /* convert anythings to lists, pass through the rest */
  
  static t_class *a2l_class;
--- 23,29 ----
  /* ------------------------- a2l ------------------------------- */
  
! /* convert anythings to lists, pass through the rest 
!  * nowadays you can use [list] for this
!  */
  
  static t_class *a2l_class;





More information about the Pd-cvs mailing list