diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-12-09 08:10:11 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-12-09 08:10:11 +0100 |
commit | 550970cd3c57ca2a455c9954c8871226031d6d76 (patch) | |
tree | 2c35233687d1547f19ace067b8e0acabc4e5f666 /base | |
parent | 785c15287026fe1e29a4ebe2cddb6c89ebe0103c (diff) | |
download | mupdf-550970cd3c57ca2a455c9954c8871226031d6d76.tar.xz |
cleanup shade stuff
Diffstat (limited to 'base')
-rw-r--r-- | base/cpudep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/cpudep.c b/base/cpudep.c index b9e7b36a..4175fafc 100644 --- a/base/cpudep.c +++ b/base/cpudep.c @@ -87,7 +87,10 @@ static const featuretest features[] = { #endif #ifndef HAVE_CPUDEP -static const featuretest features[] = {}; +static void dummy(void) {} +static const featuretest features[1] = { + { dummy, 0, "dummy" } +}; #endif #include <signal.h> /* signal/sigaction */ |