diff options
Diffstat (limited to 'usr/src/head/macros.h')
-rw-r--r-- | usr/src/head/macros.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/usr/src/head/macros.h b/usr/src/head/macros.h index 6f85520caa..6c16437648 100644 --- a/usr/src/head/macros.h +++ b/usr/src/head/macros.h @@ -19,6 +19,9 @@ * * CDDL HEADER END */ +/* + * Copyright 2014 Garrett D'Amore <garrett@damore.org> + */ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ @@ -26,8 +29,6 @@ #ifndef _MACROS_H #define _MACROS_H -#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.3.1.7 */ - #include <sys/types.h> #include <sys/stat.h> @@ -70,17 +71,8 @@ extern struct stat Statbuf; /* * Use: DEBUG(sum,d) which becomes fprintf(stderr,"sum = %d\n",sum) - * - * Note: Sccsid[] strings are still supported but not the prefered - * method of labeling files. Use #ident. */ -#ifdef __STDC__ #define DEBUG(var, type) fprintf(stderr, #var "= %" #type "\n", var) -#define SCCSID(arg) static char Sccsid[] = #arg -#else -#define DEBUG(var, type) fprintf(stderr, "var = %type\n", var) -#define SCCSID(arg) static char Sccsid[] = "arg" -#endif /* * Use of ERRABORT() will cause libS.a internal |