1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

Add missing include of limits.h

This commit is contained in:
Sebastien Helleu
2009-12-07 09:43:49 +01:00
parent a498402e78
commit a652fc271f
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -29,6 +29,7 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include <limits.h>
#include <unistd.h>
#include "../core/weechat.h"
+5
View File
@@ -26,6 +26,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <limits.h>
#include <fcntl.h>
#include "../weechat-plugin.h"
@@ -39,6 +40,10 @@ WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
WEECHAT_PLUGIN_LICENSE("GPL3");
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
#define FIFO_FILENAME_PREFIX "weechat_fifo_"
struct t_weechat_plugin *weechat_fifo_plugin = NULL;