Portable build framework for OpenNTPD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
199 B

/*
* paths.h compatibility shim
*/
#ifdef HAVE_PATHS_H
#include_next <paths.h>
#else
#ifndef LIBCOMPAT_PATHS_H
#define LIBCOMPAT_PATHS_H
#define _PATH_DEVNULL "/dev/null"
#endif
#endif