Minix2.0/include/sys/utsname.h

Compare this file to the similar file:
Show the results in this format:

/* The <sys/utsname.h> header gives the system name. */

#ifndef _UTSNAME_H
#define _UTSNAME_H

struct utsname {
  char sysname[15+1];
  char nodename[255+1];
  char release[11+1];
  char version[7+1];
  char machine[11+1];
  char arch[11+1];
};

/* Function Prototypes. */
#ifndef _ANSI_H
#include <ansi.h>
#endif

_PROTOTYPE( int uname, (struct utsname *_name)				);

#endif /* _UTSNAME_H */