Print this page
remove support for non-ANSI compilation

*** 17,48 **** * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* utimbuf is used by utime(2) */ #ifndef _UTIME_H #define _UTIME_H - #pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.3 */ - #include <sys/utime.h> #ifdef __cplusplus extern "C" { #endif - #if defined(__STDC__) extern int utime(const char *, const struct utimbuf *); - #else - extern int utime(); - #endif /* __STDC__ */ #ifdef __cplusplus } #endif --- 17,45 ---- * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ + /* + * Copyright 2014 Garrett D'Amore <garrett@damore.org> + */ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* utimbuf is used by utime(2) */ #ifndef _UTIME_H #define _UTIME_H #include <sys/utime.h> #ifdef __cplusplus extern "C" { #endif extern int utime(const char *, const struct utimbuf *); #ifdef __cplusplus } #endif