home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************
- * lindner
- * 3.1.1.1
- * 1993/02/11 18:03:04
- * /home/mudhoney/GopherSrc/CVS/gopher+/object/String.h,v
- * $Status: $
- *
- * Paul Lindner, University of Minnesota CIS.
- *
- * Copyright 1991, 1992 by the Regents of the University of Minnesota
- * see the file "Copyright" in the distribution for conditions of use.
- *********************************************************************
- * MODULE: String.h
- * Header file that automagically includes string/strings.h
- *********************************************************************
- * Revision History:
- * String.h,v
- * Revision 3.1.1.1 1993/02/11 18:03:04 lindner
- * Gopher+1.2beta release
- *
- * Revision 1.1 1992/12/10 23:27:52 lindner
- * gopher 1.1 release
- *
- *
- *********************************************************************/
-
-
-
- /* string.h == AT&T
- strings.h == BSD
-
- Though your milage may vary...
-
- */
-
- #ifdef __convex__
- #include <stdarg.h>
- #else
- #include "string.h"
- #endif
-
- #if defined(USG) || defined(hpux)
- #include <string.h>
- #else
- #include <strings.h>
- #endif
-