Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <unistd.h>
  4. #include <errno.h>
  5. #include <string.h>
  6. #include <stdlib.h>
  7.  
  8. static char pc_n[]= "pc";
  9.  
  10. int gethostname (char *buf, int size)
  11. {
  12.  strcpy(buf,"MenuetOS");
  13.  return 0;
  14. }
  15.