summaryrefslogtreecommitdiff
path: root/usr/src/cmd/ssh/include
diff options
context:
space:
mode:
authorVladimir Kotal <Vladimir.Kotal@Sun.COM>2008-09-03 16:07:48 +0200
committerVladimir Kotal <Vladimir.Kotal@Sun.COM>2008-09-03 16:07:48 +0200
commitb811a51ae52cf3dd141a03c928fdcfbd6160c008 (patch)
treea49fabb04c361f5e4030d0a7ab2e8c5083eb8bc0 /usr/src/cmd/ssh/include
parentb7deb15b87755a1f442ce5b1eb27adf498afbb2a (diff)
downloadillumos-joyent-b811a51ae52cf3dd141a03c928fdcfbd6160c008.tar.gz
PSARC 2008/305 strsep() in libc
4383867 need strsep() in libc --HG-- rename : usr/src/lib/passwdutil/bsd-strsep.c => usr/src/lib/libc/port/gen/strsep.c
Diffstat (limited to 'usr/src/cmd/ssh/include')
-rw-r--r--usr/src/cmd/ssh/include/config.h7
-rw-r--r--usr/src/cmd/ssh/include/openbsd-compat.h3
-rw-r--r--usr/src/cmd/ssh/include/strsep.h22
3 files changed, 1 insertions, 31 deletions
diff --git a/usr/src/cmd/ssh/include/config.h b/usr/src/cmd/ssh/include/config.h
index 3016273819..a39e446859 100644
--- a/usr/src/cmd/ssh/include/config.h
+++ b/usr/src/cmd/ssh/include/config.h
@@ -2,15 +2,13 @@
/* config.h.in. Generated from configure.ac by autoheader. */
/* $Id: acconfig.h,v 1.145 2002/09/26 00:38:48 tim Exp $ */
/*
- * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _CONFIG_H
#define _CONFIG_H
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#ifdef __cplusplus
extern "C" {
#endif
@@ -820,9 +818,6 @@ extern "C" {
/* Define to 1 if you have the `strmode' function. */
/* #undef HAVE_STRMODE */
-/* Define to 1 if you have the `strsep' function. */
-/* #undef HAVE_STRSEP */
-
/* Define to 1 if `st_blksize' is member of `struct stat'. */
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
diff --git a/usr/src/cmd/ssh/include/openbsd-compat.h b/usr/src/cmd/ssh/include/openbsd-compat.h
index 2cdd3952ab..df2472da0e 100644
--- a/usr/src/cmd/ssh/include/openbsd-compat.h
+++ b/usr/src/cmd/ssh/include/openbsd-compat.h
@@ -29,8 +29,6 @@
/* $Id: openbsd-compat.h,v 1.17 2002/09/12 00:33:02 djm Exp $ */
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#ifdef __cplusplus
extern "C" {
#endif
@@ -52,7 +50,6 @@ extern "C" {
#include "sigact.h"
#include "inet_ntoa.h"
#include "inet_ntop.h"
-#include "strsep.h"
#include "setproctitle.h"
#include "getgrouplist.h"
#include "glob.h"
diff --git a/usr/src/cmd/ssh/include/strsep.h b/usr/src/cmd/ssh/include/strsep.h
deleted file mode 100644
index 67e0c08b8e..0000000000
--- a/usr/src/cmd/ssh/include/strsep.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* $Id: strsep.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
-
-#ifndef _STRSEP_H
-#define _STRSEP_H
-
-#pragma ident "%Z%%M% %I% %E% SMI"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include "config.h"
-
-#ifndef HAVE_STRSEP
-char *strsep(char **stringp, const char *delim);
-#endif /* HAVE_STRSEP */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _STRSEP_H */