Commit f9870943 by Natanael Copa Committed by Stéphane Graber

Include limits.h for NAME_MAX

This fixes compile error with musl libc: In file included from start.c:66:0: monitor.h:38:12: error: 'NAME_MAX' undeclared here (not in a function) char name[NAME_MAX+1]; ^ Signed-off-by: 's avatarNatanael Copa <ncopa@alpinelinux.org> Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent 65441ac9
......@@ -23,6 +23,7 @@
#ifndef __monitor_h
#define __monitor_h
#include <limits.h>
#include <sys/param.h>
#include <sys/un.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment