Migrate certificates, icons, logs to XDG dirs
[pidgin-git.git] / libpurple / protocols / jabber / win32 / utsname.h
blob7687e015f164b824e4cbdfbee36c7c68d6349c60
1 #ifndef _SYS_UTSNAME_H
2 #define _SYS_UTSNAME_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 struct utsname
10 char sysname[20];
11 char nodename[20];
12 char release[20];
13 char version[20];
14 char machine[20];
17 int jabber_win32_uname (struct utsname *);
18 #define uname(utsname) jabber_win32_uname(utsname)
20 #ifdef __cplusplus
22 #endif
24 #endif