xref: /freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/mkerrno.sh (revision f57b27e3f85b468033c3c91c7f2f2e90aa2e8a04)
11670a1c2SRui Paulo#!/bin/sh
21670a1c2SRui Paulo#
31670a1c2SRui Paulo# CDDL HEADER START
41670a1c2SRui Paulo#
51670a1c2SRui Paulo# The contents of this file are subject to the terms of the
61670a1c2SRui Paulo# Common Development and Distribution License, Version 1.0 only
71670a1c2SRui Paulo# (the "License").  You may not use this file except in compliance
81670a1c2SRui Paulo# with the License.
91670a1c2SRui Paulo#
101670a1c2SRui Paulo# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
111670a1c2SRui Paulo# or http://www.opensolaris.org/os/licensing.
121670a1c2SRui Paulo# See the License for the specific language governing permissions
131670a1c2SRui Paulo# and limitations under the License.
141670a1c2SRui Paulo#
151670a1c2SRui Paulo# When distributing Covered Code, include this CDDL HEADER in each
161670a1c2SRui Paulo# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
171670a1c2SRui Paulo# If applicable, add the following below this CDDL HEADER, with the
181670a1c2SRui Paulo# fields enclosed by brackets "[]" replaced with your own identifying
191670a1c2SRui Paulo# information: Portions Copyright [yyyy] [name of copyright owner]
201670a1c2SRui Paulo#
211670a1c2SRui Paulo# CDDL HEADER END
221670a1c2SRui Paulo#
231670a1c2SRui Paulo#
241670a1c2SRui Paulo# Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
251670a1c2SRui Paulo# Use is subject to license terms.
261670a1c2SRui Paulo#
271670a1c2SRui Paulo#ident	"%Z%%M%	%I%	%E% SMI"
28*f57b27e3SAlex Richardsonset -e
291670a1c2SRui Paulo
301670a1c2SRui Pauloecho "\
311670a1c2SRui Paulo/*\n\
321670a1c2SRui Paulo * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.\n\
331670a1c2SRui Paulo * Use is subject to license terms.\n\
341670a1c2SRui Paulo */\n\
351670a1c2SRui Paulo\n\
361670a1c2SRui Paulo#pragma ident\t\"%Z%%M%\t%I%\t%E% SMI\"\n"
371670a1c2SRui Paulo
381670a1c2SRui Paulopattern='^#define[	 ]\(E[A-Z0-9]*\)[	 ]*\([A-Z0-9]*\).*$'
391670a1c2SRui Pauloreplace='inline int \1 = \2;@#pragma D binding "1.0" \1'
401670a1c2SRui Paulo
411670a1c2SRui Paulosed -n "s/$pattern/$replace/p" | tr '@' '\n'
42