=================================================================== RCS file: /cvs/mandoc/Attic/terminal.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mandoc/Attic/terminal.c 2009/03/19 16:17:27 1.1 +++ mandoc/Attic/terminal.c 2009/03/19 16:40:49 1.2 @@ -1,4 +1,4 @@ -/* $Id: terminal.c,v 1.1 2009/03/19 16:17:27 kristaps Exp $ */ +/* $Id: terminal.c,v 1.2 2009/03/19 16:40:49 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -23,6 +23,11 @@ #include #include "term.h" + +#ifdef __linux__ +extern size_t strlcpy(char *, const char *, size_t); +extern size_t strlcat(char *, const char *, size_t); +#endif static struct termp *termp_alloc(enum termenc); static void termp_free(struct termp *);