Add header guards to the header files.

darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
This commit is contained in:
James Vega
2005-10-05 01:11:39 +10:00
parent c361d8564c
commit e27664b13b
27 changed files with 191 additions and 14 deletions

View File

@@ -5,6 +5,13 @@
parser and to some degree the builtin handling library.
*/
#ifndef FISH_FUNCTION_H
#define FISH_FUNCTION_H
#include <wchar.h>
#include "util.h"
/**
Initialize function data
*/
@@ -61,4 +68,4 @@ int function_exists( const wchar_t *name);
void function_get_names( array_list_t *list,
int get_hidden );
#endif