diff options
author | harti <harti@FreeBSD.org> | 2005-04-11 07:40:54 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-04-11 07:40:54 +0000 |
commit | 3fcd99fa67f11c5add1306f1ee6b3c717d51d3b7 (patch) | |
tree | 9fe3f3e4a0e3faf1f0bc611c7413638b939acc94 /usr.bin/make | |
parent | 6a44af4932eddc7dbc1c5ba0a714322faf4a78dc (diff) | |
download | FreeBSD-src-3fcd99fa67f11c5add1306f1ee6b3c717d51d3b7.zip FreeBSD-src-3fcd99fa67f11c5add1306f1ee6b3c717d51d3b7.tar.gz |
Parse_Init() is gone so remove comments that mention it.
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/parse.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index a211c0f..431d854 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -45,23 +45,12 @@ __FBSDID("$FreeBSD$"); * parse.c -- * Functions to parse a makefile. * - * One function, Parse_Init, must be called before any functions - * in this module are used. After that, the function Parse_File is the - * main entry point and controls most of the other functions in this - * module. - * * Most important structures are kept in Lsts. Directories for * the #include "..." function are kept in the 'parseIncPath' Lst, while * those for the #include <...> are kept in the 'sysIncPath' Lst. The * targets currently being defined are kept in the 'targets' Lst. * - * The variables 'curFile.fname' and 'curFile.lineno' are used to track - * the name of the current file and the line number in that file so that - * error messages can be more meaningful. - * * Interface: - * Parse_Init Initialization function which must be - * called before anything else in this module is used. * * Parse_File Function used to parse a makefile. It must * be given the name of the file, which should |