[BACK]Return to extern.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Annotation of src/usr.bin/make/extern.h, Revision 1.10

1.10    ! espie       1: /*     $OpenBSD: nonints.h,v 1.7 1998/12/05 00:06:28 espie Exp $       */
1.6       millert     2: /*     $NetBSD: nonints.h,v 1.12 1996/11/06 17:59:19 christos Exp $    */
1.1       deraadt     3:
                      4: /*-
1.6       millert     5:  * Copyright (c) 1988, 1989, 1990, 1993
                      6:  *     The Regents of the University of California.  All rights reserved.
1.1       deraadt     7:  * Copyright (c) 1989 by Berkeley Softworks
                      8:  * All rights reserved.
                      9:  *
                     10:  * This code is derived from software contributed to Berkeley by
                     11:  * Adam de Boor.
                     12:  *
                     13:  * Redistribution and use in source and binary forms, with or without
                     14:  * modification, are permitted provided that the following conditions
                     15:  * are met:
                     16:  * 1. Redistributions of source code must retain the above copyright
                     17:  *    notice, this list of conditions and the following disclaimer.
                     18:  * 2. Redistributions in binary form must reproduce the above copyright
                     19:  *    notice, this list of conditions and the following disclaimer in the
                     20:  *    documentation and/or other materials provided with the distribution.
                     21:  * 3. All advertising materials mentioning features or use of this software
                     22:  *    must display the following acknowledgement:
                     23:  *     This product includes software developed by the University of
                     24:  *     California, Berkeley and its contributors.
                     25:  * 4. Neither the name of the University nor the names of its contributors
                     26:  *    may be used to endorse or promote products derived from this software
                     27:  *    without specific prior written permission.
                     28:  *
                     29:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     30:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     31:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     32:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     33:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     34:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     35:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     36:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     37:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     38:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     39:  * SUCH DAMAGE.
                     40:  *
1.6       millert    41:  *     from: @(#)nonints.h     8.3 (Berkeley) 3/19/94
1.1       deraadt    42:  */
                     43:
                     44: /* arch.c */
                     45: ReturnStatus Arch_ParseArchive __P((char **, Lst, GNode *));
                     46: void Arch_Touch __P((GNode *));
                     47: void Arch_TouchLib __P((GNode *));
1.7       espie      48: time_t Arch_MTime __P((GNode *));
                     49: time_t Arch_MemMTime __P((GNode *));
1.1       deraadt    50: void Arch_FindLib __P((GNode *, Lst));
                     51: Boolean Arch_LibOODate __P((GNode *));
                     52: void Arch_Init __P((void));
                     53: void Arch_End __P((void));
1.6       millert    54: int Arch_IsLib __P((GNode *));
1.1       deraadt    55:
                     56: /* compat.c */
                     57: void Compat_Run __P((Lst));
                     58:
                     59: /* cond.c */
                     60: int Cond_Eval __P((char *));
                     61: void Cond_End __P((void));
                     62:
                     63: /* for.c */
                     64: int For_Eval __P((char *));
                     65: void For_Run  __P((void));
                     66:
                     67: /* main.c */
                     68: void Main_ParseArgLine __P((char *));
                     69: int main __P((int, char **));
1.5       briggs     70: char *Cmd_Exec __P((char *, char **));
1.1       deraadt    71: void Error __P((char *, ...));
                     72: void Fatal __P((char *, ...));
                     73: void Punt __P((char *, ...));
                     74: void DieHorribly __P((void));
                     75: int PrintAddr __P((ClientData, ClientData));
                     76: void Finish __P((int));
1.5       briggs     77: char *estrdup __P((const char *));
1.3       deraadt    78: void *emalloc __P((size_t));
1.7       espie      79: /* efree(x) works when x==NULL. STDC behavior, may need some different
                     80:  * definition for cross-builds on deficient systems */
                     81: #define efree  free
1.3       deraadt    82: void *erealloc __P((void *, size_t));
1.1       deraadt    83: void enomem __P((void));
1.2       deraadt    84: int eunlink __P((const char *));
1.8       espie      85:
                     86: /* make.c */
                     87: int Make_TimeStamp __P((GNode *, GNode *));
                     88: Boolean Make_OODate __P((GNode *));
                     89: int Make_HandleUse __P((GNode *, GNode *));
                     90: void Make_Update __P((GNode *));
                     91: void Make_DoAllVar __P((GNode *));
                     92: Boolean Make_Run __P((Lst));
1.1       deraadt    93:
                     94: /* parse.c */
                     95: void Parse_Error __P((int, char *, ...));
                     96: Boolean Parse_AnyExport __P((void));
                     97: Boolean Parse_IsVar __P((char *));
                     98: void Parse_DoVar __P((char *, GNode *));
                     99: void Parse_AddIncludeDir __P((char *));
                    100: void Parse_File __P((char *, FILE *));
                    101: void Parse_Init __P((void));
                    102: void Parse_End __P((void));
1.10    ! espie     103: void Parse_FromString __P((char *, unsigned long));
1.1       deraadt   104: Lst Parse_MainName __P((void));
1.10    ! espie     105: unsigned long Parse_Getlineno __P((void));
1.1       deraadt   106:
                    107: /* str.c */
                    108: void str_init __P((void));
                    109: void str_end __P((void));
                    110: char *str_concat __P((char *, char *, int));
1.7       espie     111: char **brk_string __P((char *, int *, Boolean, char **));
1.1       deraadt   112: int Str_Match __P((char *, char *));
                    113: char *Str_SYSVMatch __P((char *, char *, int *len));
                    114: void Str_SYSVSubst __P((Buffer, char *, char *, int));
                    115:
                    116: /* suff.c */
                    117: void Suff_ClearSuffixes __P((void));
                    118: Boolean Suff_IsTransform __P((char *));
                    119: GNode *Suff_AddTransform __P((char *));
                    120: int Suff_EndTransform __P((ClientData, ClientData));
                    121: void Suff_AddSuffix __P((char *));
                    122: Lst Suff_GetPath __P((char *));
                    123: void Suff_DoPaths __P((void));
                    124: void Suff_AddInclude __P((char *));
                    125: void Suff_AddLib __P((char *));
                    126: void Suff_FindDeps __P((GNode *));
                    127: void Suff_SetNull __P((char *));
                    128: void Suff_Init __P((void));
                    129: void Suff_End __P((void));
                    130: void Suff_PrintAll __P((void));
                    131:
                    132: /* targ.c */
                    133: void Targ_Init __P((void));
                    134: void Targ_End __P((void));
                    135: GNode *Targ_NewGN __P((char *));
                    136: GNode *Targ_FindNode __P((char *, int));
                    137: Lst Targ_FindList __P((Lst, int));
                    138: Boolean Targ_Ignore __P((GNode *));
                    139: Boolean Targ_Silent __P((GNode *));
                    140: Boolean Targ_Precious __P((GNode *));
                    141: void Targ_SetMain __P((GNode *));
                    142: int Targ_PrintCmd __P((ClientData, ClientData));
                    143: char *Targ_FmtTime __P((time_t));
                    144: void Targ_PrintType __P((int));
                    145: void Targ_PrintGraph __P((int));
                    146:
                    147: /* var.c */
                    148: void Var_Delete __P((char *, GNode *));
                    149: void Var_Set __P((char *, char *, GNode *));
                    150: void Var_Append __P((char *, char *, GNode *));
                    151: Boolean Var_Exists __P((char *, GNode *));
                    152: char *Var_Value __P((char *, GNode *, char **));
                    153: char *Var_Parse __P((char *, GNode *, Boolean, int *, Boolean *));
                    154: char *Var_Subst __P((char *, char *, GNode *, Boolean));
                    155: char *Var_GetTail __P((char *));
                    156: char *Var_GetHead __P((char *));
                    157: void Var_Init __P((void));
                    158: void Var_End __P((void));
                    159: void Var_Dump __P((GNode *));