Mercurial > pidgin
view libpurple/protocols/jabber/win32/utsname.h @ 28444:e35043e96a1a
break early if we found the right saved status, and rewrote the exit logic
of the outer loop to be slightly more clear
author | Ka-Hing Cheung <khc@hxbc.us> |
---|---|
date | Sun, 25 Oct 2009 22:18:08 +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