Changeset d948095 in mainline for uspace/lib/posix/source/stdio.c


Ignore:
Timestamp:
2012-10-05T08:04:52Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b60faf7
Parents:
be1dcc26 (diff), 32b3a12 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge libposix cleaning (lp:~vojtech-horky/helenos/misc)

Sources and headers were separated into different directories.

There are less includes from HelenOS-specific libc into public headers
of libposix. That way, the POSIX namespace is not polluted with HelenOS
specific functions (that may collide with functions declared by
other applications).

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/stdio.c

    rbe1dcc26 rd948095  
    3737
    3838/* Has to be first. */
    39 #include "stdbool.h"
     39#include "posix/stdbool.h"
    4040
    4141#include "internal/common.h"
    42 #include "stdio.h"
    43 
    44 #include "assert.h"
    45 #include "errno.h"
    46 #include "stdlib.h"
    47 #include "string.h"
    48 #include "sys/types.h"
    49 #include "unistd.h"
    50 
     42#include "posix/stdio.h"
     43
     44#include "posix/assert.h"
     45#include "posix/errno.h"
     46#include "posix/stdlib.h"
     47#include "posix/string.h"
     48#include "posix/sys/types.h"
     49#include "posix/unistd.h"
     50
     51#include "libc/stdio.h"
    5152#include "libc/io/printf_core.h"
    5253#include "libc/str.h"
     
    5960 * need to be implemented in libc anyway
    6061 */
    61 #include "../c/generic/private/stdio.h"
     62#include "../../c/generic/private/stdio.h"
    6263
    6364/** Clears the stream's error and end-of-file indicators.
Note: See TracChangeset for help on using the changeset viewer.