/* Copyright status: this file is in the public domain. */ #include #include extern const char *__progname; #include "ptyimpl.h" void conspty_setup( int *ptymp __attribute__((__unused__)), int *ptysp __attribute__((__unused__)), const char **spathp __attribute__((__unused__)) ) { fprintf(stderr,"%s: -console not supported in this build\n",__progname); exit(1); } void ptyexport_setup( const char *arg __attribute__((__unused__)), int *ptymp __attribute__((__unused__)), int *ptysp __attribute__((__unused__)) ) { fprintf(stderr,"%s: -ptyexport not supported in this build\n",__progname); exit(1); }