Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/ly_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#ifndef LY_COMMON_H_
#define LY_COMMON_H_

#include <limits.h>
#include <pthread.h>
#include <stddef.h>
#include <stdint.h>
Expand Down Expand Up @@ -61,6 +62,11 @@ struct lysc_node;
#define GETMACRO6(_1, _2, _3, _4, _5, _6, NAME, ...) NAME
#define GETMACRO7(_1, _2, _3, _4, _5, _6, _7, NAME, ...) NAME

/** optional in POSIX */
#ifndef PATH_MAX
# define PATH_MAX 4096
#endif

/******************************************************************************
* Logger
*****************************************************************************/
Expand Down