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> 14*dcdfe824SRobert 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# 45de572d98SGarrett D'Amore 46*dcdfe824SRobert Mustacchifunc | gets |\ 47*dcdfe824SRobert Mustacchi char * |\ 48*dcdfe824SRobert Mustacchi char * |\ 49*dcdfe824SRobert Mustacchi stdio.h | ALL -C11 50*dcdfe824SRobert Mustacchi 51de572d98SGarrett D'Amorefunc | printf |\ 52de572d98SGarrett D'Amore int |\ 53de572d98SGarrett D'Amore const char * |\ 54de572d98SGarrett D'Amore stdio.h | ALL 55de572d98SGarrett D'Amore 56de572d98SGarrett D'Amorefunc | rename |\ 57de572d98SGarrett D'Amore int |\ 58de572d98SGarrett D'Amore const char *; const char * |\ 59de572d98SGarrett D'Amore stdio.h | ALL 60