diff options
author | basabi <none@none> | 2005-10-04 07:57:28 -0700 |
---|---|---|
committer | basabi <none@none> | 2005-10-04 07:57:28 -0700 |
commit | bdcaf82257ab2deb6b46efaaa4bc93a1a44b3885 (patch) | |
tree | 986eb7bae8ea4650099422631246d14c9f9e8a4a /usr/src/ucbcmd/sed/sed.h | |
parent | 3461bce34c4973cea9064c326d543387a31c152b (diff) | |
download | illumos-gate-bdcaf82257ab2deb6b46efaaa4bc93a1a44b3885.tar.gz |
6271033 gcc and cmd/dminfo don't get along
6272051 gcc and cmd/nlsadmin don't get along
6273848 gcc and cmd/setfacl don't get along
6274778 gcc and ucbcmd/sed don't get along
Diffstat (limited to 'usr/src/ucbcmd/sed/sed.h')
-rw-r--r-- | usr/src/ucbcmd/sed/sed.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/usr/src/ucbcmd/sed/sed.h b/usr/src/ucbcmd/sed/sed.h index 92ac2c0cd7..f814ce4ef6 100644 --- a/usr/src/ucbcmd/sed/sed.h +++ b/usr/src/ucbcmd/sed/sed.h @@ -20,14 +20,17 @@ * CDDL HEADER END */ /* - * Copyright 1996 Sun Microsystems, Inc. All rights reserved. + * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ /* Copyright (c) 1984 AT&T */ /* All Rights Reserved */ -#pragma ident "%Z%%M% %I% %E% SMI" /* from S5R3.1 1.8 */ +#ifndef _SED_H +#define _SED_H + +#pragma ident "%Z%%M% %I% %E% SMI" /* * sed -- stream editor @@ -150,3 +153,7 @@ char *compsub(); struct label *search(); char *gline(); char *place(); +void comperr(char *); +void execute(char *); + +#endif /* _SED_H */ |