1 /* @(#)rdummy.c	1.4 10/05/24 Copyright 2000-2010 J. Schilling */
2 #include <schily/mconfig.h>
3 #ifndef lint
4 static	UConst char _sccsid[] =
5 	"@(#)rdummy.c	1.4 10/05/24 Copyright 2000-2010 J. Schilling";
6 #endif
7 /*
8  *	scg Library
9  *	dummy remote ops
10  *
11  *	Copyright (c) 2000-2010 J. Schilling
12  */
13 /*
14  * The contents of this file are subject to the terms of the
15  * Common Development and Distribution License, Version 1.0 only
16  * (the "License").  You may not use this file except in compliance
17  * with the License.
18  *
19  * See the file CDDL.Schily.txt in this distribution for details.
20  * A copy of the CDDL is also available via the Internet at
21  * http://www.opensource.org/licenses/cddl1.txt
22  *
23  * The following exceptions apply:
24  * CDDL �3.6 needs to be replaced by: "You may create a Larger Work by
25  * combining Covered Software with other code if all other code is governed by
26  * the terms of a license that is OSI approved (see www.opensource.org) and
27  * you may distribute the Larger Work as a single product. In such a case,
28  * You must make sure the requirements of this License are fulfilled for
29  * the Covered Software."
30  *
31  * When distributing Covered Code, include this CDDL HEADER in each
32  * file and include the License file CDDL.Schily.txt from this distribution.
33  */
34 
35 #include <schily/mconfig.h>
36 #include <schily/standard.h>
37 #include <schily/schily.h>
38 
39 #include <scg/scsitransp.h>
40 
41 EXPORT	scg_ops_t *scg_remote	__PR((void));
42 
43 EXPORT scg_ops_t *
scg_remote()44 scg_remote()
45 {
46 extern	scg_ops_t scg_remote_ops;
47 
48 	return (&scg_remote_ops);
49 }
50