You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<linux/prctl.h>/* Definition of PR_* constants */
struct prctl_mm_map is defined in both linux/prctl.h and sys/prctl.h. This breaks builds due to the duplicate. It appears only one needs to be included. Suggest the below fix...
#ifndef__APPLE__#ifdef__LINUX__#include<linux/prctl.h>/* Definition of PR_* constants */#else#include<sys/prctl.h>#endif#endif
The text was updated successfully, but these errors were encountered:
picoquic/picoquic/sockloop.c
Line 83 in 6fc1ff2
struct prctl_mm_map
is defined in bothlinux/prctl.h
andsys/prctl.h
. This breaks builds due to the duplicate. It appears only one needs to be included. Suggest the below fix...The text was updated successfully, but these errors were encountered: