diff options
author | bde <bde@FreeBSD.org> | 1995-02-16 13:21:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-02-16 13:21:47 +0000 |
commit | d8d8cd68678c906ccbcacf1ac549e72fc8a8456a (patch) | |
tree | 309bcb1cb27146872a05b2ec2e3d73db56ee5ca4 | |
parent | 2db3914936bb7718d5aa05da7135e6fd45a25d2c (diff) | |
download | FreeBSD-src-d8d8cd68678c906ccbcacf1ac549e72fc8a8456a.zip FreeBSD-src-d8d8cd68678c906ccbcacf1ac549e72fc8a8456a.tar.gz |
Fix syntax errors in #ifdefed out code.
-rw-r--r-- | sys/amd64/include/cpufunc.h | 6 | ||||
-rw-r--r-- | sys/i386/include/cpufunc.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/include/cpufunc.h b/sys/amd64/include/cpufunc.h index bd6467e..19beff7 100644 --- a/sys/amd64/include/cpufunc.h +++ b/sys/amd64/include/cpufunc.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cpufunc.h,v 1.31 1995/01/04 20:42:25 davidg Exp $ + * $Id: cpufunc.h,v 1.32 1995/02/14 06:51:31 phk Exp $ */ /* @@ -325,13 +325,13 @@ void outsb __P((u_int port, void *addr, size_t cnt)); void outsl __P((u_int port, void *addr, size_t cnt)); void outsw __P((u_int port, void *addr, size_t cnt)); void outw __P((u_int port, u_short data)); -void void pmap_update __P((void)); +void pmap_update __P((void)); u_long read_eflags __P((void)); u_long rcr2 __P((void)); void write_eflags __P((u_long ef)); void insque __P((void *a, void *b)); -void remque __P((void *a)) +void remque __P((void *a)); #endif /* __GNUC__ */ diff --git a/sys/i386/include/cpufunc.h b/sys/i386/include/cpufunc.h index bd6467e..19beff7 100644 --- a/sys/i386/include/cpufunc.h +++ b/sys/i386/include/cpufunc.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cpufunc.h,v 1.31 1995/01/04 20:42:25 davidg Exp $ + * $Id: cpufunc.h,v 1.32 1995/02/14 06:51:31 phk Exp $ */ /* @@ -325,13 +325,13 @@ void outsb __P((u_int port, void *addr, size_t cnt)); void outsl __P((u_int port, void *addr, size_t cnt)); void outsw __P((u_int port, void *addr, size_t cnt)); void outw __P((u_int port, u_short data)); -void void pmap_update __P((void)); +void pmap_update __P((void)); u_long read_eflags __P((void)); u_long rcr2 __P((void)); void write_eflags __P((u_long ef)); void insque __P((void *a, void *b)); -void remque __P((void *a)) +void remque __P((void *a)); #endif /* __GNUC__ */ |