Mercurial > pidgin
view libpurple/protocols/jabber/win32/utsname.h @ 17271:3ff22e68337f
merge of '885cfa74f3bd945a11b82df9d3a8a1727cbcf592'
and 'd1cff25b68dd1a54b088fc79b94cd2def7c7e222'
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Fri, 01 Jun 2007 04:09:41 +0000 |
parents | 5fe8042783c1 |
children | da022013ec2a |
line wrap: on
line source
#ifndef _SYS_UTSNAME_H #define _SYS_UTSNAME_H #ifdef __cplusplus extern "C" { #endif struct utsname { char sysname[20]; char nodename[20]; char release[20]; char version[20]; char machine[20]; }; int uname (struct utsname *); #ifdef __cplusplus } #endif #endif