#ifndef XGETHOSTNAME_H
#define XGETHOSTNAME_H
/*
  xgethostname - implimentation of limitless gethostname
  By Nick Rusnov <nick@fargus.net>
  This is in the public domain. 
  Do what thou wilt and it shall be the whole of the law.
*/

/* xgethostname returns a char * to an allocated string containing the hostname returned
   by gethostname or 0 on failure (errno contains the error). */
char *xgethostname(void); 

#endif /* XGETHOSTNAME_H */

