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