diff options
author | Bayard Bell <buffer.g.overflow@gmail.com> | 2011-09-15 18:27:52 +0100 |
---|---|---|
committer | Bayard Bell <buffer.g.overflow@gmail.com> | 2011-09-15 18:27:52 +0100 |
commit | 89b43686db1fe9681d80a7cf5662730cb9378cae (patch) | |
tree | 6febacd926efb6c58bf500d08334a48f0114afe3 /usr/src/uts/common/syscall/pipe.c | |
parent | b5f3c6ffe7f93e6132a702a851a69b5ecd78c066 (diff) | |
download | illumos-joyent-89b43686db1fe9681d80a7cf5662730cb9378cae.tar.gz |
1073 migrate kernel modules from ancient _depends_on to true ELF dependencies
Reviewed by: Adam Leventhal <ahl@delphix.com>
Reviewed by: Garrett D'Amore <garrett@nexenta.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/uts/common/syscall/pipe.c')
-rw-r--r-- | usr/src/uts/common/syscall/pipe.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr/src/uts/common/syscall/pipe.c b/usr/src/uts/common/syscall/pipe.c index 7721cd2764..a626b2364a 100644 --- a/usr/src/uts/common/syscall/pipe.c +++ b/usr/src/uts/common/syscall/pipe.c @@ -21,14 +21,13 @@ /* * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. + * Copyright (c) 2011 Bayard G. Bell. All rights reserved. */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ -#pragma ident "%Z%%M% %I% %E% SMI" /* from SVr4.0 1.11 */ - #include <sys/types.h> #include <sys/sysmacros.h> #include <sys/param.h> @@ -49,8 +48,6 @@ #include <sys/modctl.h> #include <sys/syscall.h> -char _depends_on[] = "fs/fifofs"; - longlong_t pipe(); static struct sysent pipe_sysent = { |