Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libc/gen/ctermid.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- src/lib/libc/gen/ctermid.c 1997/07/14 19:40:49 1.6 +++ src/lib/libc/gen/ctermid.c 1997/07/21 14:06:51 1.7 @@ -1,4 +1,4 @@ -/* $NetBSD: ctermid.c,v 1.6 1997/07/14 19:40:49 kleink Exp $ */ +/* $NetBSD: ctermid.c,v 1.7 1997/07/21 14:06:51 jtc Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -38,14 +38,19 @@ #if 0 static char sccsid[] = "@(#)ctermid.c 8.1 (Berkeley) 6/4/93"; #else -__RCSID("$NetBSD: ctermid.c,v 1.6 1997/07/14 19:40:49 kleink Exp $"); +__RCSID("$NetBSD: ctermid.c,v 1.7 1997/07/21 14:06:51 jtc Exp $"); #endif #endif /* LIBC_SCCS and not lint */ +#include "namespace.h" #include #include #include +#ifdef __weak_alias +__weak_alias(ctermid,_ctermid); +#endif + char * ctermid(s) char *s;