add __main()

This commit is contained in:
cgd 1993-10-15 06:20:46 +00:00
parent dd818c7cd0
commit acbf63a86b
9 changed files with 48 additions and 13 deletions

35
sys/lib/libkern/__main.c Normal file
View File

@ -0,0 +1,35 @@
/*
* Copyright (c) 1993 Christopher G. Demetriou
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christopher G. Demetriou.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software withough specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: __main.c,v 1.1 1993/10/15 06:20:46 cgd Exp $
*/
__main()
{
}

View File

@ -1,6 +1,6 @@
# $Id: Makefile.inc,v 1.1 1993/10/13 05:40:53 cgd Exp $
# $Id: Makefile.inc,v 1.2 1993/10/15 06:20:54 cgd Exp $
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.s bzero.s ffs.s strcat.s strcmp.s strcpy.s strlen.s strncpy.c \
scanc.c skpc.c locc.c \
htonl.s htons.s ntohl.s ntohs.s \

View File

@ -1,6 +1,6 @@
# Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c \
scanc.c skpc.c locc.c \
ntoh.s \

View File

@ -1,6 +1,6 @@
# $Id: Makefile.inc,v 1.1 1993/10/13 05:41:11 cgd Exp $
# $Id: Makefile.inc,v 1.2 1993/10/15 06:21:09 cgd Exp $
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c bzero.s ffs.s strcat.c strcmp.c strcpy.c strlen.s strncpy.c \
htonl.s htons.s ntohl.s ntohs.s

View File

@ -1,6 +1,6 @@
# $Id: Makefile.inc,v 1.1 1993/10/13 05:40:50 cgd Exp $
# $Id: Makefile.inc,v 1.2 1993/10/15 06:20:50 cgd Exp $
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.s bzero.s ffs.c strcat.c strcmp.s strcpy.s strlen.s strncpy.s \
htonl.s htons.s ntohl.s ntohs.s

View File

@ -1,6 +1,6 @@
# $Id: Makefile.inc,v 1.1 1993/10/13 05:40:53 cgd Exp $
# $Id: Makefile.inc,v 1.2 1993/10/15 06:20:54 cgd Exp $
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.s bzero.s ffs.s strcat.s strcmp.s strcpy.s strlen.s strncpy.c \
scanc.c skpc.c locc.c \
htonl.s htons.s ntohl.s ntohs.s \

View File

@ -1,6 +1,6 @@
# Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c \
scanc.c skpc.c locc.c \
ntoh.s \

View File

@ -1,6 +1,6 @@
# Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c \
scanc.c skpc.c locc.c \
ntoh.s \

View File

@ -1,6 +1,6 @@
# $Id: Makefile.inc,v 1.1 1993/10/13 05:41:11 cgd Exp $
# $Id: Makefile.inc,v 1.2 1993/10/15 06:21:09 cgd Exp $
SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \
bcmp.c bzero.s ffs.s strcat.c strcmp.c strcpy.c strlen.s strncpy.c \
htonl.s htons.s ntohl.s ntohs.s