diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1997-03-11 12:09:50 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1997-03-11 12:09:50 +0000 |
| commit | a37c38b8d80f9fae9711e50f446e4edc85711b7a (patch) | |
| tree | 2cc995342e83c1d92f12a3151ad2fb2770b5c53f /sbin/dump/dump.h | |
| parent | 33aa65742bfa5f60721e5689ca37e93a99502c8e (diff) | |
Notes
Diffstat (limited to 'sbin/dump/dump.h')
| -rw-r--r-- | sbin/dump/dump.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/dump/dump.h b/sbin/dump/dump.h index 0da4c28ec482..6053198f57e7 100644 --- a/sbin/dump/dump.h +++ b/sbin/dump/dump.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)dump.h 8.1 (Berkeley) 6/5/93 + * @(#)dump.h 8.2 (Berkeley) 4/28/95 */ #define MAXINOPB (MAXBSIZE / sizeof(struct dinode)) @@ -186,8 +186,9 @@ void sig __P((int signo)); */ #ifdef COMPAT #include <sys/file.h> -extern char *index(), *rindex(), *strdup(); -extern char *ctime(); +#define strchr(a,b) index(a,b) +#define strrchr(a,b) rindex(a,b) +extern char *strdup(), *ctime(); extern int read(), write(); extern int errno; #endif |
