Changeset d60d9505 in rtems
- Timestamp:
- 08/12/96 19:20:18 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c4f5e752
- Parents:
- 40cfab47
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx01/init.c
r40cfab47 rd60d9505 23 23 pthread_t thread_id; 24 24 time_t seconds; 25 time_t seconds1; 25 26 time_t remaining; 26 27 struct tm tm; … … 59 60 seconds = time( NULL ); 60 61 printf( ctime( &seconds ) ); 62 63 /* just to have the value copied out through the parameter */ 64 65 seconds = time( &seconds1 ); 66 assert( seconds == seconds1 ); 61 67 62 68 /* check the time remaining */ -
testsuites/psxtests/psx01/init.c
r40cfab47 rd60d9505 23 23 pthread_t thread_id; 24 24 time_t seconds; 25 time_t seconds1; 25 26 time_t remaining; 26 27 struct tm tm; … … 59 60 seconds = time( NULL ); 60 61 printf( ctime( &seconds ) ); 62 63 /* just to have the value copied out through the parameter */ 64 65 seconds = time( &seconds1 ); 66 assert( seconds == seconds1 ); 61 67 62 68 /* check the time remaining */
Note: See TracChangeset
for help on using the changeset viewer.