~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to uspace/lib/posix/source/stdio.c

  • Committer: Jiri Svoboda
  • Date: 2012-11-11 21:31:03 UTC
  • mfrom: (1527.1.178 mainline)
  • Revision ID: jiri@wiwaxia-20121111213103-314bmkettwvlwj97
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#define LIBPOSIX_INTERNAL
37
37
 
38
38
/* Has to be first. */
39
 
#include "stdbool.h"
 
39
#include "posix/stdbool.h"
40
40
 
41
41
#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"
51
52
#include "libc/io/printf_core.h"
52
53
#include "libc/str.h"
53
54
#include "libc/malloc.h"
58
59
/* not the best of solutions, but freopen and ungetc will eventually
59
60
 * need to be implemented in libc anyway
60
61
 */
61
 
#include "../c/generic/private/stdio.h"
 
62
#include "../../c/generic/private/stdio.h"
62
63
 
63
64
/** Clears the stream's error and end-of-file indicators.
64
65
 *