fdc.c (7f2f1b784ee071a56749d256472016d911a4d1dc) | fdc.c (9b7408fe46f8c67976b72b06eb619b5ad0c11ca1) |
---|---|
1/* 2 * Copyright (c) 1990 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Don Ahn. 7 * 8 * Copyright (c) 1993, 1994 by --- 29 unchanged lines hidden (view full) --- 38 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 39 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 40 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 41 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 42 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 43 * SUCH DAMAGE. 44 * 45 * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 | 1/* 2 * Copyright (c) 1990 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Don Ahn. 7 * 8 * Copyright (c) 1993, 1994 by --- 29 unchanged lines hidden (view full) --- 38 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 39 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 40 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 41 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 42 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 43 * SUCH DAMAGE. 44 * 45 * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 |
46 * $Id: fd.c,v 1.110 1998/04/22 10:25:15 julian Exp $ | 46 * $Id: fd.c,v 1.111 1998/05/06 22:14:41 julian Exp $ |
47 * 48 */ 49 50#include "ft.h" 51#if NFT < 1 52#undef NFDC 53#endif 54#include "fd.h" --- 274 unchanged lines hidden (view full) --- 329 NULL, /* constructor */ 330 &fdsIOreq, 331 &fdsioctl, 332 &fdsopen, 333 /*&fdsclose*/NULL, 334 NULL, /* revoke */ 335 NULL, /* claim */ 336 NULL, /* verify */ | 47 * 48 */ 49 50#include "ft.h" 51#if NFT < 1 52#undef NFDC 53#endif 54#include "fd.h" --- 274 unchanged lines hidden (view full) --- 329 NULL, /* constructor */ 330 &fdsIOreq, 331 &fdsioctl, 332 &fdsopen, 333 /*&fdsclose*/NULL, 334 NULL, /* revoke */ 335 NULL, /* claim */ 336 NULL, /* verify */ |
337 NULL /* upconfig */ | 337 NULL, /* upconfig */ 338 NULL /* dump */ |
338}; 339#endif /* SLICE */ 340 341static int 342fdc_err(fdcu_t fdcu, const char *s) 343{ 344 fdc_data[fdcu].fdc_errs++; 345 if(s) { --- 1891 unchanged lines hidden --- | 339}; 340#endif /* SLICE */ 341 342static int 343fdc_err(fdcu_t fdcu, const char *s) 344{ 345 fdc_data[fdcu].fdc_errs++; 346 if(s) { --- 1891 unchanged lines hidden --- |