2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00
Files
build/jam_src/frames.h
Dave Abrahams 49ba2cf8dd merged to main trunk
[SVN r11610]
2001-11-06 15:36:16 +00:00

20 lines
353 B
C

#ifndef FRAMES_DWA20011021_H
# define FRAMES_DWA20011021_H
# include "lists.h"
# include "modules.h"
typedef struct frame FRAME;
struct frame
{
FRAME* prev;
LOL args[1];
module* module;
};
void frame_init( FRAME* ); /* implemented in compile.c */
void frame_free( FRAME* ); /* implemented in compile.c */
#endif // FRAMES_DWA20011021_H