1 /* $OpenBSD: monitor.c,v 1.1 2016/09/02 16:54:29 mikeb Exp $ */ 2 3 /* 4 * Public Domain 2016 Mike Belopuhov 5 */ 6 7 #include <sys/types.h> 8 9 int 10 monitor_open(const char *path, int flags, mode_t mode) 11 { 12 return (-1); 13 } 14