2003-12-31 Michael Chastain <mec.gnu@mindspring.com>
[deliverable/binutils-gdb.git] / gdb / rdi-share / drivers.c
CommitLineData
c906108c
SS
1/*
2 * Copyright (C) 1995 Advanced RISC Machines Limited. All rights reserved.
3 *
4 * This software may be freely used, copied, modified, and distributed
5 * provided that the above copyright notice is preserved in all copies of the
6 * software.
7 */
8
9/* -*-C-*-
10 *
11 * $Revision$
12 * $Date$
13 *
14 *
15 * drivers.c - declares a NULL terminated list of device driver
16 * descriptors supported by the host.
17 */
18#include <stdio.h>
19
20#include "drivers.h"
21
22extern DeviceDescr angel_SerialDevice;
23extern DeviceDescr angel_SerparDevice;
24extern DeviceDescr angel_EthernetDevice;
25
26DeviceDescr *devices[] =
27{
28 &angel_SerialDevice,
29 &angel_SerparDevice,
30 &angel_EthernetDevice,
31 NULL
32};
33
34/* EOF drivers.c */
This page took 0.355707 seconds and 4 git commands to generate.