62 lines
1.2 KiB
PHP
62 lines
1.2 KiB
PHP
|
// -*- C++ -*-
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||
|
// See https://llvm.org/LICENSE.txt for license information.
|
||
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
export {
|
||
|
using ::FILE;
|
||
|
using ::fpos_t;
|
||
|
using ::size_t;
|
||
|
|
||
|
using ::clearerr;
|
||
|
using ::fclose;
|
||
|
using ::feof;
|
||
|
using ::ferror;
|
||
|
using ::fflush;
|
||
|
using ::fgetc;
|
||
|
using ::fgetpos;
|
||
|
using ::fgets;
|
||
|
using ::fopen;
|
||
|
using ::fprintf;
|
||
|
using ::fputc;
|
||
|
using ::fputs;
|
||
|
using ::fread;
|
||
|
using ::freopen;
|
||
|
using ::fscanf;
|
||
|
using ::fseek;
|
||
|
using ::fsetpos;
|
||
|
using ::ftell;
|
||
|
using ::fwrite;
|
||
|
using ::getc;
|
||
|
using ::getchar;
|
||
|
using ::perror;
|
||
|
using ::printf;
|
||
|
using ::putc;
|
||
|
using ::putchar;
|
||
|
using ::puts;
|
||
|
using ::remove;
|
||
|
using ::rename;
|
||
|
using ::rewind;
|
||
|
using ::scanf;
|
||
|
using ::setbuf;
|
||
|
using ::setvbuf;
|
||
|
using ::snprintf;
|
||
|
using ::sprintf;
|
||
|
using ::sscanf;
|
||
|
using ::tmpfile;
|
||
|
using ::tmpnam;
|
||
|
using ::ungetc;
|
||
|
using ::vfprintf;
|
||
|
using ::vfscanf;
|
||
|
using ::vprintf;
|
||
|
using ::vscanf;
|
||
|
using ::vsnprintf;
|
||
|
using ::vsprintf;
|
||
|
using ::vsscanf;
|
||
|
|
||
|
} // export
|