Changeset ded66f8 in rtems


Ignore:
Timestamp:
09/17/96 21:26:25 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
9093c3c
Parents:
09093ee
Message:

added prototype for _POSIX_Timespec_subtract

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/headers/time.h

    r09093ee rded66f8  
    1919  (4 * TOD_SECONDS_PER_DAY))
    2020
     21/*PAGE
     22 *
     23 *  _POSIX_Timespec_subtract
     24 */
     25 
     26void _POSIX_Timespec_subtract(
     27  const struct timespec *the_start,
     28  const struct timespec *end,
     29  struct timespec *result
     30);
     31
    2132/*
    2233 *  _POSIX_Timespec_to_interval
  • c/src/exec/posix/include/rtems/posix/time.h

    r09093ee rded66f8  
    1919  (4 * TOD_SECONDS_PER_DAY))
    2020
     21/*PAGE
     22 *
     23 *  _POSIX_Timespec_subtract
     24 */
     25 
     26void _POSIX_Timespec_subtract(
     27  const struct timespec *the_start,
     28  const struct timespec *end,
     29  struct timespec *result
     30);
     31
    2132/*
    2233 *  _POSIX_Timespec_to_interval
  • cpukit/posix/include/rtems/posix/time.h

    r09093ee rded66f8  
    1919  (4 * TOD_SECONDS_PER_DAY))
    2020
     21/*PAGE
     22 *
     23 *  _POSIX_Timespec_subtract
     24 */
     25 
     26void _POSIX_Timespec_subtract(
     27  const struct timespec *the_start,
     28  const struct timespec *end,
     29  struct timespec *result
     30);
     31
    2132/*
    2233 *  _POSIX_Timespec_to_interval
Note: See TracChangeset for help on using the changeset viewer.