1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-02 14:15:46 +01:00

Added missing include guards in a few headers

Considering the number of headers we have, it is a good idea to
avoid possible problems. For details, you may read:
  http://en.wikipedia.org/wiki/Include_guard

All headers should be ok now.
This commit is contained in:
Christophe CURIS
2013-05-10 18:35:45 +02:00
committed by Carlos R. Mafra
parent 7c98f7cfc4
commit 7c320447fb
4 changed files with 18 additions and 4 deletions

View File

@@ -18,6 +18,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef WMMENUGEN_H
#define WMMENUGEN_H
#include <WINGs/WUtil.h>
#include "../src/wconfig.h"
@@ -59,3 +62,4 @@ void parse_xdg(const char *file, void (*addWMMenuEntryCallback)(WMMenuEntry *aEn
void parse_wmconfig(const char *file, void (*addWMMenuEntryCallback)(WMMenuEntry *aEntry));
Bool wmconfig_validate_file(const char *filename, const struct stat *st, int tflags, struct FTW *ftw);
#endif /* WMMENUGEN_H */