/* Copyright status: this file is in the public domain. */ #include #include "ptyimpl.h" void ptypair_setup( int *ptymp __attribute__((__unused__)), int *ptysp __attribute__((__unused__)), char **spathp __attribute__((__unused__)), char **errp ) { *errp = strdup("-console and -command not supported in this build"); } void ptyexport_setup( const char *arg __attribute__((__unused__)), int *ptymp __attribute__((__unused__)), int *ptysp __attribute__((__unused__)), char **errp ) { *errp = strdup("-ptyexport not supported in this build"); } void pty_ctty(int ptysfd __attribute__((__unused__))) { }