view src/protocols/jabber/win32/utsname.h @ 12394:51898e3031e6

[gaim-migrate @ 14701] jabber_close was trying to set our presence with jabber_presence_send, but passing a NULL status -- which causes jabber_presence_send to return immediately when the glib sanity functions are enabled, and a swift core dump with G_DISABLE_CHECKS. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Thu, 08 Dec 2005 05:13:21 +0000
parents 9682c0e022c6
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