summaryrefslogtreecommitdiff
path: root/slock.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-10-12 09:33:38 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-10-12 09:33:38 +0200
commit597d0f27f53cf152edd1c230def4fd7983ac5919 (patch)
tree3f4e215d3287e39ed3e33cdd22cf83e923562706 /slock.c
parent0f1157d7e6cabe0394ffc35a0a58a30507af8ebd (diff)
applied Salmi's patch
Diffstat (limited to 'slock.c')
-rw-r--r--slock.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/slock.c b/slock.c
index 866400d..12c991f 100644
--- a/slock.c
+++ b/slock.c
@@ -1,7 +1,7 @@
/* (C)opyright MMIV-MMV Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
-#define _XOPEN_SOURCE
+#define _XOPEN_SOURCE 500
#if HAVE_SHADOW_H
#include <shadow.h>
@@ -9,6 +9,7 @@
#include <pwd.h>
#endif
+#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -22,13 +23,13 @@ int
main(int argc, char **argv) {
char curs[] = {0, 0, 0, 0, 0, 0, 0, 0};
char buf[32], passwd[256];
- int num, prev_nitem, screen;
+ int num, screen;
#if HAVE_SHADOW_H
struct spwd *sp;
#else
struct passwd *pw;
#endif
- unsigned int i, len;
+ unsigned int len;
Bool running = True;
Cursor invisible;
Display *dpy;