~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to boot/generic/include/printf.h

  • 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:
34
34
 
35
35
#include <typedefs.h>
36
36
#include <stdarg.h>
37
 
 
38
 
#ifndef NVERIFY_PRINTF
39
 
 
40
 
#define PRINTF_ATTRIBUTE(start, end) \
41
 
        __attribute__((format(gnu_printf, start, end)))
42
 
 
43
 
#else /* NVERIFY_PRINTF */
44
 
 
45
 
#define PRINTF_ATTRIBUTE(start, end)
46
 
 
47
 
#endif /* NVERIFY_PRINTF */
 
37
#include <printf_verify.h>
48
38
 
49
39
#define EOF  (-1)
50
40