Changeset 8bdcfc4 in rtems for c/src/tests/support/stubdr/close.c
- Timestamp:
- 12/19/95 20:26:32 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4442d21c
- Parents:
- 7593d56c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/support/stubdr/close.c
r7593d56c r8bdcfc4 1 /* Stub_close2 *3 * This routine is the terminal driver close routine.4 *5 * Input parameters:6 * major - device major number7 * minor - device minor number8 * pargb - pointer to close parameter block9 *10 * Output parameters:11 * rval - STUB_SUCCESSFUL12 *13 * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.14 * On-Line Applications Research Corporation (OAR).15 * All rights assigned to U.S. Government, 1994.16 *17 * This material may be reproduced by or for the U.S. Government pursuant18 * to the copyright license under the clause at DFARS 252.227-7013. This19 * notice must appear in all copies of this file and its derivatives.20 *21 * $Id$22 */23 24 #include <rtems.h>25 #include "stubdrv.h"26 27 rtems_device_driver Stub_close(28 rtems_device_major_number major,29 rtems_device_minor_number minor,30 void *pargp31 )32 {33 return STUB_SUCCESSFUL;34 }
Note: See TracChangeset
for help on using the changeset viewer.