Print this page
fixup .text where possible
7127 remove -Wno-missing-braces from Makefile.uts
@@ -25,12 +25,12 @@
*/
#ifndef _SYS_MODEL_H
#define _SYS_MODEL_H
-#pragma ident "%Z%%M% %I% %E% SMI"
+
#ifdef __cplusplus
extern "C" {
#endif
#if defined(_KERNEL) && !defined(_ASM)
@@ -89,11 +89,11 @@
union { \
struct struct_type##32 *m32; \
struct struct_type *m64; \
} ptr; \
model_t model; \
- } handle = { NULL, DATAMODEL_ILP32 }
+ } handle = { { NULL }, DATAMODEL_ILP32 }
#define STRUCT_DECL(struct_type, handle) \
struct struct_type __##handle##_buf; \
STRUCT_HANDLE(struct_type, handle)