static ProcessState processes[MAX_HANDLED_PROCESS];
-static char *strip_extensions(const char *avail, const char *ext[]) {
+static char *strip_extensions(const char *avail, const char *ext[])
+{
char *pos, *supported, *srcp;
supported = (char *)g_malloc(strlen(avail) + 2);
0
};
-static char *supported_glx_extensions() {
+static char *supported_glx_extensions(void)
+{
static char *supported;
if(!supported)
0
};
-static char *compute_gl_extensions() {
+static char *compute_gl_extensions(void)
+{
static char *supported;
if(!supported)
}
-void init_process_tab()
+static void init_process_tab(void)
{
memset(processes, 0, sizeof(processes));
}