Changeset 58e7b26 in mainline for uspace/lib/c/test/string.c


Ignore:
Timestamp:
2018-08-31T19:10:47Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
be34d6f
Parents:
bbe5e34
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-20 18:54:48)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-31 19:10:47)
Message:

Make uspace hosted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/test/string.c

    rbbe5e34 r58e7b26  
    3333#include <pcut/pcut.h>
    3434
     35#pragma GCC diagnostic ignored "-Wstringop-truncation"
     36#pragma GCC diagnostic ignored "-Wstringop-overflow"
     37
    3538PCUT_INIT;
    3639
     
    544547PCUT_TEST(strpbrk_empty_string)
    545548{
    546         char *p;
     549        const char *p;
    547550
    548551        p = strpbrk("", "abc");
     
    553556PCUT_TEST(strpbrk_empty_set)
    554557{
    555         char *p;
     558        const char *p;
    556559
    557560        p = strpbrk("abc", "");
Note: See TracChangeset for help on using the changeset viewer.