Print this page
7127 remove -Wno-missing-braces from Makefile.uts
*** 22,33 ****
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
- #pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/sysmacros.h>
#include <sys/modctl.h>
#include <sys/debug.h>
#include <sys/mman.h>
#include <sys/modctl.h>
--- 22,31 ----
*** 39,49 ****
static struct modlmisc modlmisc = {
&mod_miscops, "Compact C Type Format routines"
};
static struct modlinkage modlinkage = {
! MODREV_1, &modlmisc, NULL
};
int
_init(void)
{
--- 37,47 ----
static struct modlmisc modlmisc = {
&mod_miscops, "Compact C Type Format routines"
};
static struct modlinkage modlinkage = {
! MODREV_1, { &modlmisc, NULL }
};
int
_init(void)
{