blob: 42f0c7c96ea4603954133b45d1013154e2af89a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- euclid-wm.c.orig 2015-09-06 19:45:03 UTC
+++ euclid-wm.c
@@ -93,9 +93,11 @@ Thus the one or more of the following no
//this is a hack
-FILE *popen(char *, char *);
+//FILE *popen(char *, char *);
+FILE *popen(const char *, const char *);
int pclose (FILE *);
-char *tempnam(char *,char*);
+//char *tempnam(char *,char*);
+char *tempnam(const char *, const char *);
//determines size of a static array (won't work with pointers)
#define ARRAY_LEN(x) (sizeof(x)/sizeof((x)[0]))
|