| 
 |  | 
#include <sys/utsname.h>int __scoinfo (buffer, bufsize) struct scoutsname *buffer; int bufsize;
       struct scoutsname {
           char           sysname[9];
           char           nodename[9];
           char           release[16];
           char           kernelid[20];
           char           machine[9];
           char           bustype[9];
           char           sysserial[10];
           unsigned short sysorigin;
           unsigned short sysoem;
           char           numuser[9];
           unsigned short numcpu;
       };
The information returned by __scoinfo is displayed by
the command uname -X.
__scoinfo is an extension of AT&T System V provided by The Santa Cruz Operation, Inc.