home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * $Source: /unixb/home/unixlib/source/unixlib37/src/c/RCS/strdup,v $
- * $Date: 1996/04/19 21:26:42 $
- * $Revision: 1.1 $
- * $State: Rel $
- * $Author: simon $
- *
- * $Log: strdup,v $
- * Revision 1.1 1996/04/19 21:26:42 simon
- * Initial revision
- *
- ***************************************************************************/
-
- static const char rcs_id[] = "$Id: strdup,v 1.1 1996/04/19 21:26:42 simon Rel $";
-
- #include <string.h>
- #include <sys/unix.h>
-
- char *
- strdup (register const char *s1)
-
- {
- return (__permstr (s1));
- }
-