diff options
author | rh <rh@pkgsrc.org> | 2004-04-08 06:46:45 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2004-04-08 06:46:45 +0000 |
commit | 3e271a7cd72d959f2d845a69c87305b91ba510e8 (patch) | |
tree | 31c4c99ce2350d71f6046ff59104c3b189ed0afe /converters/tex2rtf | |
parent | 3c7dbed9bd65995cda42764b51b50fd77d07b38f (diff) | |
download | pkgsrc-3e271a7cd72d959f2d845a69c87305b91ba510e8.tar.gz |
Prevent multiple inclusion to make this compile with gcc3
Diffstat (limited to 'converters/tex2rtf')
-rw-r--r-- | converters/tex2rtf/files/stringmatch.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/converters/tex2rtf/files/stringmatch.h b/converters/tex2rtf/files/stringmatch.h index b1925aff681..c1b89eac511 100644 --- a/converters/tex2rtf/files/stringmatch.h +++ b/converters/tex2rtf/files/stringmatch.h @@ -1,5 +1,8 @@ +#ifndef _STRINGMATCH_H_ +#define _STRINGMATCH_H_ #include "wx/object.h" #include "wx/list.h" #include "wx/filefn.h" WXDLLEXPORT bool wxStringMatch2(const wxChar *one, const wxChar *two, bool subString = TRUE, bool exact = FALSE); +#endif // _STRINGMATCH_H_ |