Home | History | Annotate | Line # | Download | only in nls
catopen.c revision 1.3.2.1
      1 /*
      2  * Written by J.T. Conklin, 10/05/94
      3  * Public domain.
      4  */
      5 
      6 #include <sys/cdefs.h>
      7 #include <nl_types.h>
      8 
      9 extern nl_catd _catopen __P((__const char *, int));
     10 
     11 nl_catd
     12 catopen(name, oflag)
     13 	__const char *name;
     14 	int oflag;
     15 {
     16 	return _catopen(name, oflag);
     17 }
     18