|
From: Jan-Benedict G. <jb...@us...> - 2004-09-20 05:53:05
|
Update of /cvsroot/linux-vax/kernel-2.5/fs/ods2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6989 Modified Files: tparse.h Log Message: - Add header file guards. Index: tparse.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/fs/ods2/tparse.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- tparse.h 19 Sep 2004 09:47:49 -0000 1.1 +++ tparse.h 20 Sep 2004 05:52:49 -0000 1.2 @@ -1,3 +1,6 @@ +#ifndef _TPARSE_H +#define _TPARSE_H + #define TPA_EXIT (void *)1 #define TPA_FAIL (void *)0 @@ -47,3 +50,5 @@ } TPARSE; int tparse(ARGBLK *argblk, TPARSE *tpa); + +#endif /* _TPARSE_H */ |