Ignore:
Timestamp:
2018-09-18T14:50:22Z (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:
460ea7e
Parents:
7570a95f
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-14 17:49:49)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-18 14:50:22)
Message:

libposix: Change header organization and remove passthrough headers

Posix headers now function like an overlay. The system include directories
are searched after posix directories. The headers don't need to be patched
for export now. libposix files now include headers using bracket notation
instead of quoted notation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/string.h

    r7570a95f r9b8be79  
    4444 */
    4545
    46 #include <_bits/NULL.h>
    47 #include <_bits/size_t.h>
     46#include <stddef.h>
    4847
    49 #include "libc/mem.h"
     48#include <libc/mem.h>
    5049#ifdef _HELENOS_SOURCE
    5150#undef _HELENOS_SOURCE
    52 #include "libc/string.h"
     51#include <libc/string.h>
    5352#define _HELENOS_SOURCE
    5453#else
    55 #include "libc/string.h"
     54#include <libc/string.h>
    5655#endif
    5756
Note: See TracChangeset for help on using the changeset viewer.