*** empty log message ***

This commit is contained in:
2005-05-23 14:43:03 +00:00
parent 7abd54ea12
commit 05951ad1bf
8 changed files with 174 additions and 73 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: symbol.h,v 1.3 2005-05-21 15:55:49 bacon Exp $
* $Id: symbol.h,v 1.4 2005-05-23 14:43:03 bacon Exp $
*/
#ifndef _XP_STX_SYMBOL_H_
@@ -11,6 +11,15 @@
#define XP_STX_SYMLINK_LINK 0
#define XP_STX_SYMLINK_SYMBOL 1
struct xp_stx_symlink_t
{
xp_stx_objhdr_t header;
xp_stx_word_t link;
xp_stx_word_t symbol;
};
typedef struct xp_stx_symlink_t xp_stx_symlink_t;
#ifdef __cplusplus
extern "C" {
#endif
@@ -23,7 +32,6 @@ xp_stx_word_t xp_stx_new_symbol_pp (
void xp_stx_traverse_symbol_table (
xp_stx_t* stx, void (*func) (xp_stx_t*,xp_stx_word_t));
#ifdef __cplusplus
}
#endif