Changeset 4b374f36 in rtems for c/src/tests/samples
- Timestamp:
- 08/17/95 19:36:43 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3b438fa
- Parents:
- 556fb911
- Location:
- c/src/tests/samples
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/samples/base_mp/apptask.c
r556fb911 r4b374f36 18 18 * notice must appear in all copies of this file and its derivatives. 19 19 * 20 * $Id$20 * apptask.c,v 1.2 1995/05/31 17:05:14 joel Exp 21 21 */ 22 22 23 23 #include "system.h" 24 #include "libcsupport.h"25 24 26 25 rtems_task Application_task( -
c/src/tests/samples/base_mp/system.h
r556fb911 r4b374f36 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * system.h,v 1.2 1995/05/31 17:05:21 joel Exp 15 15 */ 16 16 17 17 #include <rtems.h> 18 #include "stdio.h" 19 #include "libcsupport.h" 18 #include <bsp.h> 19 #include <stdio.h> 20 #include <libcsupport.h> 20 21 21 22 /* Miscellaneous */ -
c/src/tests/samples/base_sp/apptask.c
r556fb911 r4b374f36 17 17 * notice must appear in all copies of this file and its derivatives. 18 18 * 19 * $Id$19 * apptask.c,v 1.2 1995/05/31 17:05:28 joel Exp 20 20 */ 21 21 22 22 #include "system.h" 23 #include "libcsupport.h"24 23 25 24 rtems_task Application_task( -
c/src/tests/samples/base_sp/system.h
r556fb911 r4b374f36 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * system.h,v 1.2 1995/05/31 17:05:38 joel Exp 15 15 */ 16 16 17 17 #include <rtems.h> 18 #include "stdio.h" 18 #include <bsp.h> 19 #include <stdio.h> 19 20 20 21 /* Miscellaneous */ -
c/src/tests/samples/cdtest/init.c
r556fb911 r4b374f36 19 19 * notice must appear in all copies of this file and its derivatives. 20 20 * 21 * $Id$21 * init.c,v 1.2 1995/05/31 17:05:45 joel Exp 22 22 */ 23 23 … … 28 28 #include "gvar.h" 29 29 #include <stdio.h> 30 #include "libcsupport.h" -
c/src/tests/samples/cdtest/system.h
r556fb911 r4b374f36 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * system.h,v 1.2 1995/05/31 17:05:49 joel Exp 15 15 */ 16 16 17 17 #include <rtems.h> 18 #include "stdio.h" 18 #include <bsp.h> 19 #include <stdio.h> 19 20 20 21 /* Miscellaneous */ -
c/src/tests/samples/hello/init.c
r556fb911 r4b374f36 19 19 * notice must appear in all copies of this file and its derivatives. 20 20 * 21 * $Id$21 * init.c,v 1.2 1995/05/31 17:05:58 joel Exp 22 22 */ 23 23 … … 28 28 #include "gvar.h" 29 29 #include <stdio.h> 30 #include "libcsupport.h"31 32 30 33 31 rtems_task Init( -
c/src/tests/samples/hello/system.h
r556fb911 r4b374f36 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * system.h,v 1.2 1995/05/31 17:06:00 joel Exp 15 15 */ 16 16 17 17 #include <rtems.h> 18 #include "stdio.h" 18 #include <bsp.h> 19 20 #include <stdio.h> 19 21 20 22 /* Miscellaneous */ -
c/src/tests/samples/paranoia/init.c
r556fb911 r4b374f36 19 19 * notice must appear in all copies of this file and its derivatives. 20 20 * 21 * $Id$21 * init.c,v 1.2 1995/05/31 17:06:07 joel Exp 22 22 */ 23 23 … … 27 27 #include "conftbl.h" 28 28 #include "gvar.h" 29 #include "libcsupport.h"30 29 31 30 extern int paranoia(int, char **); -
c/src/tests/samples/paranoia/paranoia.c
r556fb911 r4b374f36 1 1 /* 2 * RTEMS RCS Id: $Id$2 * RTEMS RCS Id: paranoia.c,v 1.2 1995/05/31 17:06:09 joel Exp 3 3 * 4 4 * A C version of Kahan's Floating Point Test "Paranoia" … … 162 162 163 163 #ifdef NEED_REENT 164 #include "reent.h"164 #include <reent.h> 165 165 struct _reent libm_reent = _REENT_INIT(libm_reent); 166 166 struct _reent *_impure_ptr = &libm_reent; -
c/src/tests/samples/paranoia/system.h
r556fb911 r4b374f36 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * system.h,v 1.2 1995/05/31 17:06:13 joel Exp 15 15 */ 16 16 17 17 #include <rtems.h> 18 #include "stdio.h" 18 #include <bsp.h> 19 #include <stdio.h> 19 20 20 21 /* Miscellaneous */ -
c/src/tests/samples/ticker/system.h
r556fb911 r4b374f36 12 12 * notice must appear in all copies of this file and its derivatives. 13 13 * 14 * $Id$14 * system.h,v 1.2 1995/05/31 17:06:23 joel Exp 15 15 */ 16 16 17 #include <rtems.h> 18 #include "tmacros.h" 17 #include <tmacros.h> 19 18 20 19 /* Miscellaneous */
Note: See TracChangeset
for help on using the changeset viewer.