summaryrefslogtreecommitdiff
path: root/plugins/ao/eng_ssf/scsplfo.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2014-06-26 23:41:33 +0400
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2014-06-26 23:41:33 +0400
commit3031fb0b877495e98233b2728cbb4a2bf5dbbe11 (patch)
treeef30b5623ec593531184e7cd02c6bbafb5364fa1 /plugins/ao/eng_ssf/scsplfo.c
parent96bab4b5e72f2e044a95962f6c33a8c1f912c01f (diff)
ao: fixed BSD linking issues
Diffstat (limited to 'plugins/ao/eng_ssf/scsplfo.c')
-rw-r--r--plugins/ao/eng_ssf/scsplfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ao/eng_ssf/scsplfo.c b/plugins/ao/eng_ssf/scsplfo.c
index c25e3c8d..0a8281c1 100644
--- a/plugins/ao/eng_ssf/scsplfo.c
+++ b/plugins/ao/eng_ssf/scsplfo.c
@@ -104,7 +104,7 @@ void LFO_Init(void)
}
}
-signed int INLINE PLFO_Step(struct _LFO *LFO)
+static signed int INLINE PLFO_Step(struct _LFO *LFO)
{
int p;
LFO->phase+=LFO->phase_step;
@@ -116,7 +116,7 @@ signed int INLINE PLFO_Step(struct _LFO *LFO)
return p<<(SHIFT-LFO_SHIFT);
}
-signed int INLINE ALFO_Step(struct _LFO *LFO)
+static signed int INLINE ALFO_Step(struct _LFO *LFO)
{
int p;
LFO->phase+=LFO->phase_step;