~ubuntu-branches/ubuntu/raring/pd-smlib/raring-proposed

« back to all changes in this revision

Viewing changes to linspace.c

  • Committer: Package Import Robot
  • Author(s): Hans-Christoph Steiner
  • Date: 2012-09-25 12:20:08 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120925122008-jhr5hyl3juh91eyv
Tags: 0.12.2-1
* updated to upstream version v0.12.2
* removed patches since they are in new upstream release
* bumped standards version to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
typedef struct _linspace
10
10
{
11
11
    t_object x_obj;
12
 
        float m_lo;
13
 
        float m_hi;
14
 
        float m_n;
 
12
        t_float m_lo;
 
13
        t_float m_hi;
 
14
        t_float m_n;
15
15
} t_linspace;
16
16
 
17
17
 
22
22
        if ((n<256)&&(n>1))
23
23
        {
24
24
                int i;
25
 
                float lo,step;
 
25
                t_float lo,step;
26
26
                t_atom *ap,*app;
27
27
 
28
28
                ap = (t_atom *)getbytes(sizeof(t_atom)*n);