48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/* @(#)rdummy.c 1.4 10/05/24 Copyright 2000-2010 J. Schilling */
|
|
#include <schily/mconfig.h>
|
|
#ifndef lint
|
|
static UConst char _sccsid[] =
|
|
"@(#)rdummy.c 1.4 10/05/24 Copyright 2000-2010 J. Schilling";
|
|
#endif
|
|
/*
|
|
* scg Library
|
|
* dummy remote ops
|
|
*
|
|
* Copyright (c) 2000-2010 J. Schilling
|
|
*/
|
|
/*
|
|
* The contents of this file are subject to the terms of the
|
|
* Common Development and Distribution License, Version 1.0 only
|
|
* (the "License"). You may not use this file except in compliance
|
|
* with the License.
|
|
*
|
|
* See the file CDDL.Schily.txt in this distribution for details.
|
|
*
|
|
* The following exceptions apply:
|
|
* CDDL §3.6 needs to be replaced by: "You may create a Larger Work by
|
|
* combining Covered Software with other code if all other code is governed by
|
|
* the terms of a license that is OSI approved (see www.opensource.org) and
|
|
* you may distribute the Larger Work as a single product. In such a case,
|
|
* You must make sure the requirements of this License are fulfilled for
|
|
* the Covered Software."
|
|
*
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
* file and include the License file CDDL.Schily.txt from this distribution.
|
|
*/
|
|
|
|
#include <schily/mconfig.h>
|
|
#include <schily/standard.h>
|
|
#include <schily/schily.h>
|
|
|
|
#include <scg/scsitransp.h>
|
|
|
|
EXPORT scg_ops_t *scg_remote __PR((void));
|
|
|
|
EXPORT scg_ops_t *
|
|
scg_remote()
|
|
{
|
|
extern scg_ops_t scg_remote_ops;
|
|
|
|
return (&scg_remote_ops);
|
|
}
|