diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2011-08-29 09:10:50 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2011-08-29 09:10:50 +0000 |
commit | 1cfc000cccbae9b36cbd23f01ccdfe9c5a18b684 (patch) | |
tree | a71b3c3a1d1f5c4bb047aa56880c697197b7ba00 /app/cwm/conf.c | |
parent | 886d7b8104a77df8370e144cb944713c0313b04c (diff) |
zap unused macro. ok oga@
Diffstat (limited to 'app/cwm/conf.c')
-rw-r--r-- | app/cwm/conf.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index 1d8b5ea65..f5b98ac76 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.90 2011/08/22 16:18:05 okan Exp $ + * $OpenBSD: conf.c,v 1.91 2011/08/29 09:10:49 okan Exp $ */ #include <sys/param.h> @@ -31,13 +31,6 @@ #include "calmwm.h" -#ifndef timespeccmp -#define timespeccmp(tsp, usp, cmp) \ - (((tsp)->tv_sec == (usp)->tv_sec) ? \ - ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \ - ((tsp)->tv_sec cmp (usp)->tv_sec)) -#endif - static void conf_mouseunbind(struct conf *, struct mousebinding *); static void conf_unbind(struct conf *, struct keybinding *); |