Home | History | Annotate | Line # | Download | only in nls
catopen.c revision 1.4
      1 /*	$NetBSD: catopen.c,v 1.4 1995/02/27 13:06:47 cgd Exp $	*/
      2 
      3 /*
      4  * Written by J.T. Conklin, 10/05/94
      5  * Public domain.
      6  */
      7 
      8 #include <sys/cdefs.h>
      9 
     10 #ifdef __weak_reference
     11 __weak_reference(_catopen,catopen);
     12 #else
     13 
     14 #include <nl_types.h>
     15 
     16 extern nl_catd _catopen __P((__const char *, int));
     17 
     18 nl_catd
     19 catopen(name, oflag)
     20 	__const char *name;
     21 	int oflag;
     22 {
     23 	return _catopen(name, oflag);
     24 }
     25 
     26 #endif
     27