summaryrefslogtreecommitdiff
path: root/stm/malloc0.c
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-23 20:39:20 +0100
committerDamien <damien.p.george@gmail.com>2013-10-23 20:39:20 +0100
commit0f6545139b84f3a6ad1dab04652b7646aacc44e7 (patch)
treead06b3b2984351a5aeeb12188594232b67025f15 /stm/malloc0.c
parent8b3a7c2237d74b84eb7ff9fe4b6cd5888545f2af (diff)
Implement simple servo control using PWM.
Diffstat (limited to 'stm/malloc0.c')
-rw-r--r--stm/malloc0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/malloc0.c b/stm/malloc0.c
index 8827e82a8..7157252ed 100644
--- a/stm/malloc0.c
+++ b/stm/malloc0.c
@@ -49,7 +49,7 @@ void *realloc(void *ptr, size_t n) {
return gc_realloc(ptr, n);
}
-void __assert_func() {
+void __assert_func(void) {
printf("\nASSERT FAIL!");
for (;;) {
}