diff options
Diffstat (limited to 'sys/arch/arc/include')
-rw-r--r-- | sys/arch/arc/include/disklabel.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/arc/include/disklabel.h b/sys/arch/arc/include/disklabel.h index eaa1ce6d902..9a31a425e2d 100644 --- a/sys/arch/arc/include/disklabel.h +++ b/sys/arch/arc/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.14 1999/03/23 16:36:17 millert Exp $ */ +/* $OpenBSD: disklabel.h,v 1.15 1999/10/26 03:43:48 downsj Exp $ */ /* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */ /* @@ -90,8 +90,12 @@ struct cpu_disklabel { static __inline u_int32_t get_le __P((void *)); static __inline u_int32_t +#ifdef __cplusplus +get_le(void *p) +#else get_le(p) void *p; +#endif { u_int8_t *_p = (u_int8_t *)p; u_int32_t x; |