Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
lyonpotpourri3.0
Compare Revisions
b1bf43a35f635c43ae4955f54f6fec17160e2499...530895321c94d446577272b3f99e35b2f2076498
Commits (1)
missed a static declaration
· 53089532
Jonathan Wilkes
authored
Aug 21, 2017
53089532
Show whitespace changes
Inline
Side-by-side
counter~.c
View file @
53089532
...
@@ -18,7 +18,7 @@ typedef struct _counter
...
@@ -18,7 +18,7 @@ typedef struct _counter
}
t_counter
;
}
t_counter
;
static
void
*
counter_new
(
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
);
static
void
*
counter_new
(
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
);
t_int
*
counter_perform
(
t_int
*
w
);
static
t_int
*
counter_perform
(
t_int
*
w
);
static
void
counter_dsp
(
t_counter
*
x
,
t_signal
**
sp
);
static
void
counter_dsp
(
t_counter
*
x
,
t_signal
**
sp
);
static
void
counter_setnext
(
t_counter
*
x
,
t_floatarg
val
);
static
void
counter_setnext
(
t_counter
*
x
,
t_floatarg
val
);
static
void
counter_direction
(
t_counter
*
x
,
t_floatarg
d
);
static
void
counter_direction
(
t_counter
*
x
,
t_floatarg
d
);
...
...