diff options
author | le <le@FreeBSD.org> | 2004-03-05 09:19:59 +0000 |
---|---|---|
committer | le <le@FreeBSD.org> | 2004-03-05 09:19:59 +0000 |
commit | d23ba575570676b3ecb3e389ca6d6560d25136bf (patch) | |
tree | 2aa71561af3790da0f02ce7965a3377bbcf636b5 /sys/powerpc/include | |
parent | d17cebce574e1fcb1a3696f8429df41bc8a3baed (diff) | |
download | FreeBSD-src-d23ba575570676b3ecb3e389ca6d6560d25136bf.zip FreeBSD-src-d23ba575570676b3ecb3e389ca6d6560d25136bf.tar.gz |
Fix syntax errors and wrong function prototypes in several MD header
files when using non-GNUC compilers.
PR: kern/58515
Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at>
Approved by: grog (mentor), obrien
Diffstat (limited to 'sys/powerpc/include')
-rw-r--r-- | sys/powerpc/include/critical.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/powerpc/include/critical.h b/sys/powerpc/include/critical.h index afb268f..7e0eace 100644 --- a/sys/powerpc/include/critical.h +++ b/sys/powerpc/include/critical.h @@ -85,8 +85,8 @@ cpu_critical_exit(void) #else /* !__GNUC__ */ -void cpu_critical_enter(void) -void cpu_critical_exit(void) +void cpu_critical_enter(void); +void cpu_critical_exit(void); #endif /* __GNUC__ */ |