Changeset 9912f49 in mainline


Ignore:
Timestamp:
2018-07-13T13:49:12Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5f97ef44
Parents:
99d3123
git-author:
Jiri Svoboda <jiri@…> (2018-07-12 21:45:51)
git-committer:
Jiri Svoboda <jiri@…> (2018-07-13 13:49:12)
Message:

imaxabs, imaxdiv.

Location:
uspace/lib/c
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/Makefile

    r99d3123 r9912f49  
    7676        generic/errno.c \
    7777        generic/gsort.c \
     78        generic/inttypes.c \
    7879        generic/loc.c \
    7980        generic/mem.c \
     
    197198        test/main.c \
    198199        test/mem.c \
     200        test/inttypes.c \
    199201        test/io/table.c \
    200202        test/stdio/scanf.c \
  • uspace/lib/c/include/inttypes.h

    r99d3123 r9912f49  
    4343
    4444#ifndef __HELENOS_DISABLE_INTMAX__
     45intmax_t imaxabs(intmax_t);
     46imaxdiv_t imaxdiv(intmax_t, intmax_t);
    4547intmax_t strtoimax(const char *__restrict__ nptr,
    4648    char **__restrict__ endptr, int base);
  • uspace/lib/c/test/main.c

    r99d3123 r9912f49  
    3434PCUT_IMPORT(circ_buf);
    3535PCUT_IMPORT(fibril_timer);
     36PCUT_IMPORT(inttypes);
    3637PCUT_IMPORT(mem);
    3738PCUT_IMPORT(odict);
  • uspace/lib/c/test/stdlib.c

    r99d3123 r9912f49  
    3232/**
    3333 * @file
    34  * @brief Test formatted input (scanf family)
     34 * @brief Test General utilities (stdlib.h)
    3535 */
    3636
Note: See TracChangeset for help on using the changeset viewer.