1de572d98SGarrett D'Amore# 2de572d98SGarrett D'Amore# This file and its contents are supplied under the terms of the 3de572d98SGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0. 4de572d98SGarrett D'Amore# You may only use this file in accordance with the terms of version 5de572d98SGarrett D'Amore# 1.0 of the CDDL. 6de572d98SGarrett D'Amore# 7de572d98SGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this 8de572d98SGarrett D'Amore# source. A copy of the CDDL is also available via the Internet at 9de572d98SGarrett D'Amore# http://www.illumos.org/license/CDDL. 10de572d98SGarrett D'Amore# 11de572d98SGarrett D'Amore 12de572d98SGarrett D'Amore# 13de572d98SGarrett D'Amore# Copyright 2015 Garrett D'Amore <garrett@damore.org> 14fc2512cfSRobert Mustacchi# Copyright 2016 Joyent, Inc. 15de572d98SGarrett D'Amore# 16de572d98SGarrett D'Amore 17de572d98SGarrett D'Amore# 18de572d98SGarrett D'Amore# Definitions found in stdio.h 19de572d98SGarrett D'Amore# 20de572d98SGarrett D'Amore 21de572d98SGarrett D'Amore# 22de572d98SGarrett D'Amore# Types. 23de572d98SGarrett D'Amore# 24de572d98SGarrett D'Amoretype | FILE | stdio.h | ALL 25de572d98SGarrett D'Amoretype | fpos_t | stdio.h | ALL 26de572d98SGarrett D'Amoretype | size_t | stdio.h | ALL 27de572d98SGarrett D'Amore 28de572d98SGarrett D'Amore# 29de572d98SGarrett D'Amore# Values. 30de572d98SGarrett D'Amore# 31de572d98SGarrett D'Amorevalue | BUFSIZ | int | stdio.h | ALL 32de572d98SGarrett D'Amorevalue | EOF | int | stdio.h | ALL 33de572d98SGarrett D'Amorevalue | NULL | void * | stdio.h | ALL 34de572d98SGarrett D'Amorevalue | stderr | FILE * | stdio.h | ALL 35de572d98SGarrett D'Amorevalue | stdin | FILE * | stdio.h | ALL 36de572d98SGarrett D'Amorevalue | stdout | FILE * | stdio.h | ALL 37de572d98SGarrett D'Amorevalue | optarg | char * | stdio.h | -ALL +XPG3+ -SUSv3+ 38de572d98SGarrett D'Amorevalue | optind | int | stdio.h | -ALL +XPG3+ -SUSv3+ 39de572d98SGarrett D'Amorevalue | opterr | int | stdio.h | -ALL +XPG3+ -SUSv3+ 40de572d98SGarrett D'Amorevalue | optopt | int | stdio.h | -ALL +XPG3+ -SUSv3+ 41de572d98SGarrett D'Amore 42de572d98SGarrett D'Amore# 43de572d98SGarrett D'Amore# Functions 44de572d98SGarrett D'Amore# 45cd62a92dSRobert Mustacchifunc | fmemopen |\ 46cd62a92dSRobert Mustacchi FILE * |\ 47cd62a92dSRobert Mustacchi void *; size_t; const char * |\ 48cd62a92dSRobert Mustacchi stdio.h | -ALL SUSv4+ 49cd62a92dSRobert Mustacchi 50de572d98SGarrett D'Amore 51fc2512cfSRobert Mustacchifunc | gets |\ 52fc2512cfSRobert Mustacchi char * |\ 53fc2512cfSRobert Mustacchi char * |\ 54*d0b93cc3SRobert Mustacchi stdio.h | ALL -C11+ 55fc2512cfSRobert Mustacchi 56cd62a92dSRobert Mustacchifunc | open_memstream |\ 57cd62a92dSRobert Mustacchi FILE * |\ 58cd62a92dSRobert Mustacchi char **; size_t * |\ 59cd62a92dSRobert Mustacchi stdio.h | -ALL SUSv4+ 60cd62a92dSRobert Mustacchi 61de572d98SGarrett D'Amorefunc | printf |\ 62de572d98SGarrett D'Amore int |\ 63de572d98SGarrett D'Amore const char * |\ 64de572d98SGarrett D'Amore stdio.h | ALL 65de572d98SGarrett D'Amore 66de572d98SGarrett D'Amorefunc | rename |\ 67de572d98SGarrett D'Amore int |\ 68de572d98SGarrett D'Amore const char *; const char * |\ 69de572d98SGarrett D'Amore stdio.h | ALL 70