view libpurple/protocols/jabber/win32/utsname.h @ 31749:4f414608eaad

propagate from branch 'im.pidgin.pidgin.mxit' (head 342293440b7089597815dac27b11677a4cef7254) to branch 'im.pidgin.pidgin' (head 28c3d2da674aa9cd470995ce6bd39c4434e026fe)
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sat, 05 Mar 2011 17:18:10 +0000
parents da022013ec2a
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 jabber_win32_uname (struct utsname *);
#define uname(utsname) jabber_win32_uname(utsname)

#ifdef __cplusplus
}
#endif

#endif