mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Add prototypes and declare function return type in ibcs2.c
Add new files to Makefile.
This commit is contained in:
parent
d78e535b51
commit
cfa33e1893
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11402
4 changed files with 28 additions and 10 deletions
|
@ -1,10 +1,12 @@
|
|||
# $Id: Makefile,v 1.4 1994/10/27 23:36:57 wollman Exp $
|
||||
# Makefile,v 1.5 1994/12/11 21:27:14 wollman Exp
|
||||
|
||||
.PATH: ${.CURDIR}/../../sys/i386/ibcs2
|
||||
KMOD= ibcs2_mod
|
||||
SRCS= ibcs2.c ibcs2_dummy.c ibcs2_file.c ibcs2_ioctl.c ibcs2_ipc.c \
|
||||
ibcs2_isc.c ibcs2_misc.c ibcs2_signal.c ibcs2_stats.c \
|
||||
ibcs2_sysent.c ibcs2_sysi86.c ibcs2_xenix.c vnode_if.h
|
||||
SRCS= ibcs2.c ibcs2_errno.c ibcs2_ipc.c ibcs2_stat.c ibcs2_misc.c \
|
||||
ibcs2_fcntl.c ibcs2_signal.c ibcs2_sysent.c ibcs2_ioctl.c \
|
||||
ibcs2_socksys.c ibcs2_util.c ibcs2_xenix.c ibcs2_xenix_sysent.c \
|
||||
ibcs2_isc.c ibcs2_isc_sysent.c \
|
||||
ibcs2_msg.c ibcs2_other.c ibcs2_sysi86.c ibcs2_sysvec.c vnode_if.h
|
||||
NOMAN=
|
||||
CFLAGS+= -DLKM -I. -DCOMPAT_IBCS2
|
||||
CLEANFILES+= vnode_if.h vnode_if.c
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ibcs2.c,v 1.2 1994/10/14 08:45:16 sos Exp $
|
||||
* $Id: ibcs2.c,v 1.3 1995/05/30 06:06:06 rgrimes Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -38,18 +38,25 @@
|
|||
|
||||
MOD_MISC("ibcs2_mod")
|
||||
|
||||
int ibcs2_load __P((struct lkm_table *, int));
|
||||
int ibcs2_unload __P((struct lkm_table *, int));
|
||||
int ibcs2_init __P((struct lkm_table *, int, int));
|
||||
|
||||
int
|
||||
ibcs2_load(struct lkm_table *lkmtp, int cmd)
|
||||
{
|
||||
uprintf("ibcs2 emulator installed\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
ibcs2_unload(struct lkm_table *lkmtp, int cmd)
|
||||
{
|
||||
uprintf("ibcs2 emulator removed\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
ibcs2_init(struct lkm_table *lkmtp, int cmd, int ver)
|
||||
{
|
||||
DISPATCH(lkmtp, cmd, ver, ibcs2_load, ibcs2_unload, nosys);
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
# $Id: Makefile,v 1.4 1994/10/27 23:36:57 wollman Exp $
|
||||
# Makefile,v 1.5 1994/12/11 21:27:14 wollman Exp
|
||||
|
||||
.PATH: ${.CURDIR}/../../sys/i386/ibcs2
|
||||
KMOD= ibcs2_mod
|
||||
SRCS= ibcs2.c ibcs2_dummy.c ibcs2_file.c ibcs2_ioctl.c ibcs2_ipc.c \
|
||||
ibcs2_isc.c ibcs2_misc.c ibcs2_signal.c ibcs2_stats.c \
|
||||
ibcs2_sysent.c ibcs2_sysi86.c ibcs2_xenix.c vnode_if.h
|
||||
SRCS= ibcs2.c ibcs2_errno.c ibcs2_ipc.c ibcs2_stat.c ibcs2_misc.c \
|
||||
ibcs2_fcntl.c ibcs2_signal.c ibcs2_sysent.c ibcs2_ioctl.c \
|
||||
ibcs2_socksys.c ibcs2_util.c ibcs2_xenix.c ibcs2_xenix_sysent.c \
|
||||
ibcs2_isc.c ibcs2_isc_sysent.c \
|
||||
ibcs2_msg.c ibcs2_other.c ibcs2_sysi86.c ibcs2_sysvec.c vnode_if.h
|
||||
NOMAN=
|
||||
CFLAGS+= -DLKM -I. -DCOMPAT_IBCS2
|
||||
CLEANFILES+= vnode_if.h vnode_if.c
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: ibcs2.c,v 1.2 1994/10/14 08:45:16 sos Exp $
|
||||
* $Id: ibcs2.c,v 1.3 1995/05/30 06:06:06 rgrimes Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -38,18 +38,25 @@
|
|||
|
||||
MOD_MISC("ibcs2_mod")
|
||||
|
||||
int ibcs2_load __P((struct lkm_table *, int));
|
||||
int ibcs2_unload __P((struct lkm_table *, int));
|
||||
int ibcs2_init __P((struct lkm_table *, int, int));
|
||||
|
||||
int
|
||||
ibcs2_load(struct lkm_table *lkmtp, int cmd)
|
||||
{
|
||||
uprintf("ibcs2 emulator installed\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
ibcs2_unload(struct lkm_table *lkmtp, int cmd)
|
||||
{
|
||||
uprintf("ibcs2 emulator removed\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
ibcs2_init(struct lkm_table *lkmtp, int cmd, int ver)
|
||||
{
|
||||
DISPATCH(lkmtp, cmd, ver, ibcs2_load, ibcs2_unload, nosys);
|
||||
|
|
Loading…
Reference in a new issue