From 48c36d628aa10183eda59bccc035f154b7cea767 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 21 Jul 2009 13:07:50 +0000 Subject: [PATCH] No paths.h in cmd.c; add _PATH_DEV for Solaris. --- cmd.c | 3 +-- compat.h | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd.c b/cmd.c index 1d689e81..b29a32c1 100644 --- a/cmd.c +++ b/cmd.c @@ -1,4 +1,4 @@ -/* $Id: cmd.c,v 1.105 2009-07-17 18:32:54 tcunha Exp $ */ +/* $Id: cmd.c,v 1.106 2009-07-21 13:07:50 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -20,7 +20,6 @@ #include #include -#include #include #include #include diff --git a/compat.h b/compat.h index 71de746b..27223abc 100644 --- a/compat.h +++ b/compat.h @@ -1,4 +1,4 @@ -/* $Id: compat.h,v 1.6 2009-07-02 07:30:59 nicm Exp $ */ +/* $Id: compat.h,v 1.7 2009-07-21 13:07:50 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -21,6 +21,7 @@ #define _PATH_TMP "/tmp/" #define _PATH_DEVNULL "/dev/null" #define _PATH_TTY "/dev/tty" +#define _PATH_DEV "/dev/" #endif #ifdef HAVE_QUEUE_H