aboutsummaryrefslogtreecommitdiff
path: root/slof/ppc64.h
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-09-09 21:51:59 +0200
committerAlexey Kardashevskiy <aik@ozlabs.ru>2016-09-14 17:50:39 +1000
commit488569289854dba3f6cf63dcbdc2629c44258c0f (patch)
tree7993007f81eb5f025ee4f429afe9a68d0e9cb370 /slof/ppc64.h
parentb3fde41bc75269df2e30a7dfc0645ca239eb2786 (diff)
downloadSLOF-488569289854dba3f6cf63dcbdc2629c44258c0f.zip
SLOF-488569289854dba3f6cf63dcbdc2629c44258c0f.tar.gz
SLOF-488569289854dba3f6cf63dcbdc2629c44258c0f.tar.bz2
paflof: Use CFLAGS from make.rules instead of completely redefining them
It's cumbersome to change the CFLAGS in multiple places in case they have to be changed. So let's use the global CFLAGS from make.rules for building Paflof, too. Since the global rules use some additional compiler warning flags, fix the now occuring compiler warnings in the Paflof code, too (mostly about missing or wrong prototypes). Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'slof/ppc64.h')
-rw-r--r--slof/ppc64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/slof/ppc64.h b/slof/ppc64.h
index 59a1b90..e3a2cd2 100644
--- a/slof/ppc64.h
+++ b/slof/ppc64.h
@@ -34,7 +34,7 @@ extern cell the_mem[]; /* Space for the dictionary / the HERE pointer */
extern cell *restrict dp;
extern cell *restrict rp;
-void client_entry_point();
+void client_entry_point(void);
extern unsigned long call_client(cell);
extern long c_romfs_lookup(long, long, void *);