2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Correct includes per #1056.

[SVN r38185]
This commit is contained in:
Vladimir Prus
2007-07-11 18:21:15 +00:00
parent c44c5e4a48
commit 798e313c30
3 changed files with 3 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
# include "compile.h"
# include "native.h"
# include "variable.h"
# include "timestamp.h"
# include <ctype.h>
/*
@@ -58,7 +59,6 @@ LIST* builtin_system_registry_names( PARSE *parse, FRAME *frame );
int glob( char *s, char *c );
void lol_build( LOL* lol, char** elements );
void backtrace( FRAME *frame );
void backtrace_line( FRAME *frame );
void print_source_line( PARSE* p );

View File

@@ -91,6 +91,7 @@ void lol_init( LOL *lol );
void lol_free( LOL *lol );
LIST * lol_get( LOL *lol, int i );
void lol_print( LOL *lol );
void lol_build( LOL* lol, char** elements );
#endif

View File

@@ -60,6 +60,7 @@
# include "make.h"
# include "command.h"
# include "execcmd.h"
# include "compile.h"
# include <stdlib.h>