view libgaim/protocols/jabber/win32/utsname.h @ 15344:85a2aafc9c4b

[gaim-migrate @ 18136] some more paths-in-prefs cleanup committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 16 Jan 2007 05:12:48 +0000
parents 60b1bc8dbf37
children
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