Numerous miscellaneous features incorporated from Tony Bennett

(tbennett@divnc.com) including the following major additions:

  + variable length messages
  + named devices
  + debug monitor
  + association tables/variables
This commit is contained in:
Joel Sherrill
1995-08-17 19:51:51 +00:00
parent 3b438fa4b0
commit b06e68ef1f
151 changed files with 15476 additions and 1815 deletions

View File

@@ -35,27 +35,6 @@ __isatty(int _fd)
return 1;
}
int
__close(int _fd)
{
/* return value usually ignored anyhow */
return 0;
}
int
__open(const char *filename)
{
/* always fail */
return -1;
}
int
__lseek(int _fd, off_t offset, int whence)
{
/* nothing is ever seekable */
return -1;
}
int stat( const char *path, struct stat *buf )
{
/* always fail */