Changeset 3a4ae6c in rtems for c/src/optman/sapi/no-ext.c
- Timestamp:
- 09/11/95 19:35:39 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/optman/sapi/no-ext.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/object.h> 18 #include <rtems/thread.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/rtems/support.h> 19 #include <rtems/core/object.h> 20 #include <rtems/core/thread.h> 19 21 #include <rtems/extension.h> 20 22 … … 26 28 27 29 rtems_status_code rtems_extension_create( 28 rtems_name 30 rtems_name name, 29 31 rtems_extensions_table *extension_table, 30 Objects_Id 32 Objects_Id *id 31 33 ) 32 34 { 33 return ( RTEMS_NOT_CONFIGURED );35 return RTEMS_NOT_CONFIGURED; 34 36 } 35 37 … … 39 41 ) 40 42 { 41 return ( RTEMS_NOT_CONFIGURED );43 return RTEMS_NOT_CONFIGURED; 42 44 } 43 45 … … 46 48 ) 47 49 { 48 return ( RTEMS_NOT_CONFIGURED );50 return RTEMS_NOT_CONFIGURED; 49 51 }
Note: See TracChangeset
for help on using the changeset viewer.