libutil: add O_NOCTTY back to old pty open code
[minix.git] / lib / libc / string / Lint_strcat.c
blob279a35dc552a65cada5e21c882596edfd36f757b
1 /* $NetBSD: Lint_strcat.c,v 1.2 2000/06/14 06:49:08 cgd Exp $ */
3 /*
4 * This file placed in the public domain.
5 * Chris Demetriou, November 5, 1997.
6 */
8 #include <string.h>
10 /*ARGSUSED*/
11 char *
12 strcat(s, append)
13 char *s;
14 const char *append;
16 return (0);