~mmach/netext73/wasi-libc

« back to all changes in this revision

Viewing changes to libc-top-half/musl/include/stdio.h

  • Committer: mmach
  • Date: 2023-09-12 15:53:36 UTC
  • Revision ID: netbit73@gmail.com-20230912155336-s1r5z5xnszz99zzo
0.0~git20230113.4362b18

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <bits/alltypes.h>
29
29
 
30
30
#ifdef __wasilibc_unmodified_upstream /* Use the compiler's definition of NULL */
31
 
#ifdef __cplusplus
 
31
#if __cplusplus >= 201103L
 
32
#define NULL nullptr
 
33
#elif defined(__cplusplus)
32
34
#define NULL 0L
33
35
#else
34
36
#define NULL ((void*)0)