usleep needs _XOPEN_SOURCE=500 or
_XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED. Some system publish it
with BSD_SOURCE but not all.
---
config.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.mk b/config.mk
index c0d466b..a641d56 100644
--- a/config.mk
+++ b/config.mk
@@ -1
I am also for keycodes. I patched my suckless softwares to handle
keycodes instead of keysyms.
On Thu, Feb 19, 2015 at 6:44 PM, Dmitrij D. Czarkoff wrote:
> Markus Teich said:
>> sure. Unfortunately I see no easy way of achieving that. Either use the
>> keycodes, which are layout agnostic, but ha
Applied, thanks.
---
test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test.c b/test.c
index 660048a..957b205 100644
--- a/test.c
+++ b/test.c
@@ -100,7 +100,7 @@ noarg(char **argv)
static int
onearg(char **argv)
{
- return strlen(argv[0]);
+ return unary_n(argv[0]);
}
s
Applied, thanks!