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


Ignore:
Timestamp:
2012-08-31T09:55:22Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ca4c6ec1
Parents:
33fee91
Message:

Introduce include/ and source/ directories into libposix

File:
1 moved

Legend:

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

    r33fee91 ra3da2b2  
    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"
     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"
    5050
    5151#include "libc/io/printf_core.h"
     
    5959 * need to be implemented in libc anyway
    6060 */
    61 #include "../c/generic/private/stdio.h"
     61#include "../../c/generic/private/stdio.h"
    6262
    6363/** Clears the stream's error and end-of-file indicators.
Note: See TracChangeset for help on using the changeset viewer.