WPrefs: Code formatting in TexturePanel.c; minimizes checkpatch.pl warnings.
[wmaker-crm.git] / src / osdep_stub.c
blobca76cab658dbfa92ff650731d05bf65bbc8b7406
2 #include <sys/utsname.h>
4 #include <WINGs/WUtil.h>
6 #include "wconfig.h"
7 #include "osdep.h"
9 Bool GetCommandForPid(int pid, char ***argv, int *argc)
11 static int notified = 0;
13 if (!notified) {
14 struct utsname un;
16 /* The comment below is placed in the PO file by xgettext to help translator */
17 if (uname(&un) != -1) {
19 * 1st %s is a function name
20 * 2nd %s is an email address
21 * 3rd %s is the name of the operating system
23 wwarning(_("%s is not implemented on this platform; "
24 "tell %s you are running %s release %s version %s"),
25 __FUNCTION__, PACKAGE_BUGREPORT,
26 un.sysname, un.release, un.version);
27 notified = 1;
32 *argv = NULL;
33 *argc = 0;
35 return False;