xref: /titanic_41/usr/src/lib/libc/port/llib-lc (revision b7d3956b92a285d8dac2c7f5f7e28d2ef5347ef8)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27#pragma ident	"%Z%%M%	%I%	%E% SMI"
28
29/* LINTLIBRARY */
30/* PROTOLIB1 */
31
32#include <aio.h>
33#include <alloca.h>
34#include <attr.h>
35#include <atomic.h>
36#include <ctype.h>
37#include <deflt.h>
38#include <dirent.h>
39#include <dlfcn.h>
40#include <door.h>
41#include <err.h>
42#include <sys/errno.h>
43#include <euc.h>
44#include <fcntl.h>
45#include <float.h>
46#include <fmtmsg.h>
47#include <fnmatch.h>
48#include <ftw.h>
49#include <getwidth.h>
50#include <grp.h>
51#include <iconv.h>
52#include <langinfo.h>
53#include <libgen.h>
54#include <libw.h>
55#include <locale.h>
56#include <memory.h>
57#include <mon.h>
58#include <mqueue.h>
59#include <nan.h>
60#include <ndbm.h>
61#include <limits.h>
62#include <nl_types.h>
63#include <project.h>
64#include <priv.h>
65#include <pwd.h>
66#include <rctl.h>
67#include <regex.h>
68#include <rpcsvc/ypclnt.h>
69#include <sched.h>
70#include <search.h>
71#include <semaphore.h>
72#include <setjmp.h>
73#include <shadow.h>
74#include <siginfo.h>
75#include <signal.h>
76#include <stdarg.h>
77#include <ucred.h>
78#include <sys/ucred.h>
79#include <unistd.h>
80#include <ulimit.h>
81#include <utime.h>
82#include <stddef.h>
83#include <stdio.h>
84#include <stdlib.h>
85#include <string.h>
86#include <stropts.h>
87#include <synch.h>
88#include <sys/acctctl.h>
89#include <sys/acl.h>
90#include <sys/asynch.h>
91#include <sys/byteorder.h>
92#include <sys/cladm.h>
93#include <sys/corectl.h>
94#include <sys/dl.h>
95#include <sys/exacct.h>
96#include <sys/fcntl.h>
97#include <sys/file.h>
98#include <sys/fs/namenode.h>
99#include <sys/instance.h>
100#include <sys/ipc.h>
101#include <sys/lwp.h>
102#include <sys/mkdev.h>
103#include <sys/mman.h>
104#include <sys/mnttab.h>
105#include <sys/mount.h>
106#include <sys/msg.h>
107#include <sys/param.h>
108#include <sys/poll.h>
109#include <sys/priocntl.h>
110#include <sys/procset.h>
111#include <sys/processor.h>
112#include <sys/pset.h>
113#include <sys/rctl_impl.h>
114#include <sys/sem.h>
115#include <sys/shm.h>
116#include <sys/sid.h>
117#include <sys/signal.h>
118#include <sys/stat.h>
119#include <sys/statvfs.h>
120#include <sys/strlog.h>
121#include <sys/stropts.h>
122#include <sys/syscall.h>
123#include <sys/sysconfig.h>
124#include <sys/syslog.h>
125#include <sys/systeminfo.h>
126#include <sys/task.h>
127#include <sys/termio.h>
128#include <sys/termios.h>
129#include <sys/u8_textprep.h>
130#include <sys/time.h>
131#include <sys/timeb.h>
132#include <sys/times.h>
133#include <sys/types.h>
134#include <sys/uadmin.h>
135#include <sys/utsname.h>
136#include <sys/vfstab.h>
137#include <sys/sendfile.h>
138#include <sys/zone.h>
139#include <termio.h>
140#include <time.h>
141#include <tzfile.h>
142#include <ucontext.h>
143#include <utmpx.h>
144#include <values.h>
145#include <wait.h>
146#include <wchar.h>
147#include <wctype.h>
148#include <widec.h>
149#include <wordexp.h>
150#include <thread.h>
151#include <pthread.h>
152#include <schedctl.h>
153#include <zone.h>
154#include <port.h>
155#include <spawn.h>
156#include <inttypes.h>
157#include <getopt.h>
158#include <stdio_ext.h>
159#if defined(__i386)
160#include <sys/sysi86.h>
161#endif
162#if defined(__amd64)
163#include <stack_unwind.h>
164#endif
165
166/*
167 * This really comes from the crt*.s startup modules.
168 */
169char **environ;
170
171/*
172 * POSIX versions of standard libc routines; these aren't extracted
173 * from the headers above since we cannot #define _POSIX_C_SOURCE.
174 */
175int __posix_readdir_r(DIR * _RESTRICT_KYWD, struct dirent * _RESTRICT_KYWD,
176    struct dirent ** _RESTRICT_KYWD);
177int __posix_getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
178int __posix_getgrnam_r(const char *, struct group *, char *, size_t,
179    struct group **);
180int __posix_getpwuid_r(uid_t, struct passwd *, char *, size_t,
181    struct passwd **);
182int __posix_getpwnam_r(const char *, struct passwd *, char *, size_t,
183    struct passwd **);
184int __posix_sigwait(const sigset_t * _RESTRICT_KYWD, int * _RESTRICT_KYWD);
185char *__posix_asctime_r(const struct tm *_RESTRICT_KYWD, char *_RESTRICT_KYWD);
186char *__posix_ctime_r(const time_t *, char *);
187int __posix_ttyname_r(int, char *, size_t);
188int __posix_getlogin_r(char *, int);
189
190/*
191 * XPG4 versions of standard libc routines; these aren't extracted
192 * from the headers above since we cannot #define _XPG4_2.
193 */
194int __xpg4_putmsg(int, const struct strbuf *, const struct strbuf *, int);
195int __xpg4_putpmsg(int, const struct strbuf *, const struct strbuf *, int, int);
196
197/*
198 * These aren't extracted from the headers above because:
199 * - We cannot #define _STRPTIME_DONTZERO
200 * - We cannot #define _XPG5
201 */
202char *__strptime_dontzero(const char *, const char *, struct tm *);
203long __sysconf_xpg5(int);
204wchar_t *__wcstok_xpg5(wchar_t *_RESTRICT_KYWD,
205	const wchar_t *_RESTRICT_KYWD, wchar_t **_RESTRICT_KYWD);
206size_t __wcsftime_xpg5(wchar_t *_RESTRICT_KYWD, size_t,
207	const wchar_t *_RESTRICT_KYWD, const struct tm *_RESTRICT_KYWD);
208wint_t __fgetwc_xpg5(__FILE *);
209wint_t __getwc_xpg5(__FILE *);
210wint_t __getwchar_xpg5(void);
211wint_t __fputwc_xpg5(wint_t, __FILE *);
212wint_t __putwc_xpg5(wint_t, __FILE *);
213wint_t __putwchar_xpg5(wint_t);
214wchar_t *__fgetws_xpg5(wchar_t *_RESTRICT_KYWD, int, __FILE *_RESTRICT_KYWD);
215int __fputws_xpg5(const wchar_t *_RESTRICT_KYWD, __FILE *_RESTRICT_KYWD);
216wint_t __ungetwc_xpg5(wint_t, __FILE *);
217
218/*
219 * /usr/src/lib/libc/port/gen routines
220 */
221
222/* _ctype.c */
223
224/* _loc_data.c */
225
226/* _locale.c */
227
228/* _set_tab.c */
229int _set_tab(const char *loc, int cat);
230
231/* _xftw.c */
232int _xftw(int ver, const char *path, int (*fn)(), int depth);
233
234/* a64l.c */
235long a64l(const char *);
236
237/* abort.c */
238void abort(void);
239
240/* abs.c */
241int abs(int arg);
242long labs(long int arg);
243
244/* assert.c */
245void _assert(const char *assertion, const char *filename, int line_num);
246
247/* atexit.c */
248int atexit(void(*func)());
249void _exithandle(void);
250
251/* atof.c */
252double atof(const char *p);
253
254/* atoi.c */
255int atoi(const char *p);
256
257/* atol.c */
258long atol(const char *p);
259
260/* basename.c */
261char *basename(char *s);
262
263/* bcmp.c */
264int bcmp(const void *s1, const void *s2, size_t len);
265
266/* bcopy.c */
267void bcopy(const void *s1, void *s2, size_t len);
268
269/* bsearch.c */
270void *bsearch(const void *ky, const void *bs, size_t nel,
271		size_t width, int (*compar)());
272
273/* bzero.c */
274void bzero(void *sp, size_t len);
275
276/* calloc.c */
277void *calloc(size_t num, size_t size);
278
279/* catclose.c */
280int catclose(nl_catd catd);
281
282/* catgets.c */
283char *catgets(nl_catd catd, int set_num, int msg_num, const char *s);
284
285/* catopen.c */
286nl_catd catopen(const char *name, int mode);
287
288/* cfgetispeed.c */
289speed_t cfgetispeed(const struct termios *termios_p);
290
291/* cfgetospeed.c */
292speed_t cfgetospeed(const struct termios *termios_p);
293
294/* cfree.c */
295void cfree(void *p, size_t num, size_t size);
296
297/* cfsetispeed.c */
298int cfsetispeed(struct termios *termios_p, speed_t speed);
299
300/* cfsetospeed.c */
301int cfsetospeed(struct termios *termios_p, speed_t speed);
302
303/* cftime.c */
304int cftime(char *buf, char *format, const time_t *t);
305int ascftime(char *buf, const char *format, const struct tm *tm);
306
307/* clock.c */
308clock_t clock(void);
309
310/* closedir.c */
311int closedir(DIR *dirp);
312
313/* confstr.c */
314size_t confstr(int name, char *buf, size_t length);
315
316/* crypt.c */
317void setkey(const char *key);
318void encrypt(char *block, int fake);
319char *crypt(const char *key, const char *salt);
320
321/* csetlen.c */
322int csetlen(int cset);
323int csetcol(int cset);
324
325/* ctime.c */
326char *ctime(const time_t *t);
327char *ctime_r(const time_t *, char *buf, int);
328char *asctime(const struct tm *t);
329char *asctime_r(const struct tm *, char *, int);
330
331/* ctypefcns.c */
332int isalpha(int c);
333int isupper(int c);
334int islower(int c);
335int isdigit(int c);
336int isxdigit(int c);
337int isalnum(int c);
338int isspace(int c);
339int ispunct(int c);
340int isprint(int c);
341int isgraph(int c);
342int iscntrl(int c);
343int isascii(int c);
344int _toupper(int c);
345int _tolower(int c);
346int toascii(int c);
347
348/* directio.c */
349int directio(int filedes, int advice);
350
351/* dirname.c */
352char *dirname(char *s);
353
354/* div.c */
355div_t div(int numer, int denom);
356ldiv_t ldiv(long int numer, long int denom);
357
358/* drand48.c */
359double drand48(void);
360double erand48(unsigned short *xsubi);
361long krand48(unsigned short *xsubi, unsigned int m);
362long lrand48(void);
363long mrand48(void);
364void srand48(long seedval);
365unsigned short *seed48(unsigned short seed16v[3]);
366void lcong48(unsigned short param[7]);
367long nrand48(unsigned short *xsubi);
368long jrand48(unsigned short *xsubi);
369
370/* dup2.c */
371int dup2(int fildes, int fildes2);
372
373/* ecvt.c */
374char *ecvt(double value, int ndigit, int *_RESTRICT_KYWD decpt,
375	int *_RESTRICT_KYWDsign);
376char *fcvt(double value, int ndigit, int *_RESTRICT_KYWD decpt,
377	int *_RESTRICT_KYWD sign);
378
379/* err.c */
380void _errfp(FILE *, int, const char *, ...);
381void _verrfp(FILE *, int, const char *, va_list);
382void _errxfp(FILE *, int, const char *, ...);
383void _verrxfp(FILE *, int, const char *, va_list);
384void _warnfp(FILE *, const char *, ...);
385void _vwarnfp(FILE *, const char *, va_list);
386void _warnxfp(FILE *, const char *, ...);
387void _vwarnxfp(FILE *, const char *, va_list);
388
389/* errlst.c */
390
391/* euclen.c */
392int euccol(const unsigned char *s);
393int euclen(const unsigned char *s);
394int eucscol(const unsigned char *s);
395
396/* execvp.c */
397/* VARARGS1 */
398int execlp(const char *, const char *, ...);
399int execvp(const char *name, char *const *argv);
400
401/* fattach.c */
402int fattach(int fildes, const char *path);
403
404/* fdetach.c */
405int fdetach(const char *path);
406
407/* ffs.c */
408int ffs(int field);
409
410/* fmtmsg.c */
411int addseverity(int value, const char *string);
412int fmtmsg(long class, const char *label, int severity, const char *text,
413		const char *action, const char *tag);
414
415/* ftime.c */
416int ftime(struct timeb *tp);
417
418/* ftok.c */
419key_t ftok(const char *path, int id);
420
421/* gcvt.c */
422char *gcvt(double number, int ndigit, char *buf);
423
424/* getcwd.c */
425char *getcwd(char *str, size_t size);
426
427/* getdate.c */
428struct tm *getdate(const char *expression);
429#ifdef getdate_err
430#undef getdate_err
431#endif
432int getdate_err;
433
434/* getdate_data.c */
435
436/* getdate_gd.c */
437
438/* getdtblsize.c */
439int getdtablesize(void);
440
441/* getenv.c */
442char *getenv(const char *name);
443
444/* getexecname.c */
445const char *getexecname(void);
446
447/* getgrnam.c */
448struct group *getgrnam(const char *name);
449struct group *getgrgid(gid_t gid);
450struct group *fgetgrent_r(FILE *, struct group *, char *, int);
451struct group *getgrent_r(struct group *, char *, int);
452struct group *getgrgid_r(gid_t, struct group *, char *, int);
453struct group *getgrnam_r(const char *, struct group *, char *, int);
454
455/* gethostid.c */
456long gethostid(void);
457
458/* gethz.c */
459int gethz(void);
460
461/* getisax.c */
462uint_t getisax(uint32_t *, uint_t);
463
464/* getlogin.c */
465char *getlogin(void);
466char *getlogin_r(char *, int);
467
468/* getmntent.c */
469int getmntany(FILE *fd, struct mnttab *mgetp, struct mnttab *mrefp);
470int getmntent(FILE *fd, struct mnttab *mp);
471
472/* getnetgrent.c */
473int setnetgrent(const char *grp);
474int endnetgrent(void);
475int getnetgrent(char **machinep, char **namep, char **domainp);
476
477/* getopt.c */
478int getopt(int argc, char *const *argv, const char *opts);
479
480/* getopt_long.c */
481int getopt_clip(int argc, char *const *argv, const char *optstring,
482		const struct option *long_options, int *long_index);
483int getopt_long(int argc, char *const *argv, const char *optstring,
484		const struct option *long_options, int *long_index);
485int getopt_long_only(int argc, char *const *argv, const char *optstring,
486		const struct option *long_options, int *long_index);
487
488/* getpagesize.c */
489int getpagesize(void);
490
491/* getpw.c */
492int getpw(uid_t uid, char *buf);
493
494/* getpwnam.c */
495struct passwd *getpwnam(const char *name);
496struct passwd *getpwuid(uid_t uid);
497struct passwd *fgetpwent_r(FILE *, struct passwd *, char *, int);
498struct passwd *getpwent_r(struct passwd *, char *, int);
499struct passwd *getpwnam_r(const char *, struct passwd *, char *, int);
500struct passwd *getpwuid_r(uid_t, struct passwd *, char *, int);
501
502/* getrusage.c */
503int getrusage(int who, struct rusage *rusage);
504
505/* gettimeofday.c */
506int gettimeofday(struct timeval *_RESTRICT_KYWD tp, void *_RESTRICT_KYWD);
507
508/* getspent.c */
509void setspent(void);
510void endspent(void);
511struct spwd *getspent(void);
512struct spwd *getspent_r(struct spwd *, char *, int);
513struct spwd *fgetspent(FILE *f);
514struct spwd *fgetspent_r(FILE *, struct spwd *, char *, int);
515struct spwd *getspnam(const char *name);
516struct spwd *getspnam_r(const char *, struct spwd *, char *, int);
517int putspent(const struct spwd *p, FILE *f);
518
519/* getspent_r.c */
520int str2spwd(const char *, int, void *, char *, int);
521
522/* getsubopt.c */
523int getsubopt(char **optionsp, char *const *tokens, char **valuep);
524
525/* gettxt.c */
526char *gettxt(const char *msg_id, const char *dflt_str);
527
528/* getusershell.c */
529char *getusershell(void);
530void endusershell(void);
531void setusershell(void);
532
533/* getut.c */
534struct utmp *getutent(void);
535struct utmp *getutid(const struct utmp *entry);
536struct utmp *getutline(const struct utmp *entry);
537struct utmp *pututline(const struct utmp *entry);
538void setutent(void);
539void endutent(void);
540int utmpname(const char *newfile);
541void updwtmp(const char *file, struct utmp *ut);
542void getutmp(const struct utmpx *utx, struct utmp *ut);
543void getutmpx(const struct utmp *ut, struct utmpx *utx);
544struct utmp *makeut(struct utmp *utmp);
545
546/* getutx.c */
547struct utmpx *getutxent(void);
548struct utmpx *getutxid(const struct utmpx *entry);
549struct utmpx *getutxline(const struct utmpx *entry);
550struct utmpx *pututxline(const struct utmpx *entry);
551void setutxent(void);
552void endutxent(void);
553int utmpxname(const char *newfile);
554void updwtmpx(const char *filex, struct utmpx *utx);
555struct utmpx *makeutx(const struct utmpx *utmp);
556struct utmpx *modutx(const struct utmpx *utp);
557
558/* getvfsent.c */
559int getvfsspec(FILE *fd, struct vfstab *vp, char *special);
560int getvfsfile(FILE *fd, struct vfstab *vp, char *mountp);
561int getvfsany(FILE *fd, struct vfstab *vgetp, struct vfstab *vrefp);
562int getvfsent(FILE *fd, struct vfstab *vp);
563
564/* getwd.c */
565char *getwd(char *pathname);
566
567/* getwidth.c */
568void getwidth(eucwidth_t *eucstruct);
569
570/* hsearch.c */
571int hcreate(size_t size);
572void hdestroy(void);
573ENTRY *hsearch(ENTRY item, ACTION action);
574
575/* iconv.c  */
576size_t iconv(iconv_t cd, const char **_RESTRICT_KYWD inbuf,
577    size_t *_RESTRICT_KYWD inbytesleft, char **_RESTRICT_KYWD outbuf,
578    size_t *_RESTRICT_KYWD outbytesleft);
579int iconv_close(iconv_t cd);
580iconv_t iconv_open(const char *tocode, const char *fromcode);
581
582/* imaxabs.c */
583intmax_t imaxabs(intmax_t j);
584
585/* imaxdiv.c */
586imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom);
587
588/* index.c */
589char *index(const char *sp, int c);
590
591/* initgroups.c */
592int initgroups(const char *uname, gid_t agroup);
593
594/* innetgr.c */
595int innetgr(const char *group, const char *machine, const char *name,
596    const char *domain);
597
598/* insque.c */
599void insque(void *elem, void *pred);
600void remque(void *elem);
601
602/* isaexec.c */
603int isaexec(const char *, char *const *, char *const *);
604
605/* isastream.c */
606int isastream(int fd);
607
608/* isatty.c */
609int isatty(int f);
610
611/* killpg.c */
612int killpg(pid_t pgrp, int sig);
613
614/* l64a.c */
615char *l64a(long lg);
616
617/* lckpwdf.c */
618int lckpwdf(void);
619int ulckpwdf(void);
620
621/* lfind.c */
622void * lfind(const void *ky, const void *bs, size_t *nelp,
623		size_t width, int (*compar)());
624
625/* localeconv.c */
626struct lconv *localeconv(void);
627
628/* lsearch.c */
629void * lsearch(const void *ky, void *bs, size_t *nelp,
630		size_t width, int (*compar)());
631
632/* madvise.c */
633int madvise(caddr_t addr, size_t len, int advice);
634
635/* malloc.c */
636void *malloc(size_t size);
637void *realloc(void *old, size_t size);
638void free(void *old);
639
640/* mbstowcs.c */
641size_t mbstowcs(wchar_t *_RESTRICT_KYWD pwcs, const char *_RESTRICT_KYWD s,
642	size_t n);
643
644/* mbtowc.c */
645int mbtowc(wchar_t *_RESTRICT_KYWD wchar, const char *_RESTRICT_KYWD s,
646	size_t n);
647int mblen(const char *s, size_t n);
648
649/* memalign.c */
650void *memalign(size_t align, size_t nbytes);
651
652/* memccpy.c */
653void *memccpy(void *_RESTRICT_KYWDs, const void *_RESTRICT_KYWD s0, int c,
654	size_t n);
655
656/* memchr.c */
657void *memchr(const void *sptr, int c1, size_t n);
658
659/* memcmp.c */
660int memcmp(const void *s1, const void *s2, size_t n);
661
662/* memcpy.c */
663void *memcpy(void *_RESTRICT_KYWD s, const void *_RESTRICT_KYWD s0, size_t n);
664
665/* memmove.c */
666void *memmove(void *s, const void *s0, size_t n);
667
668/* memset.c */
669void *memset(void *sp1, int c, size_t n);
670
671/* mkdev.c */
672dev_t __makedev(const int version, const major_t majdev,
673		const minor_t mindev);
674major_t __major(const int version, const dev_t devnum);
675minor_t __minor(const int version, const dev_t devnum);
676
677/* mkfifo.c */
678int mkfifo(const char *path, mode_t mode);
679
680/* mktemp.c */
681char *mktemp(char *as);
682
683/* mlock.c */
684int mlock(caddr_t addr, size_t len);
685
686/* mlockall.c */
687int mlockall(int flags);
688
689/* mon.c */
690void monitor(int (*alowpc)(), int (*ahighpc)(), WORD *buffer,
691		size_t bufsize, size_t nfunc);
692
693/* msync.c */
694int msync(caddr_t addr, size_t len, int flags);
695
696/* munlock.c */
697int munlock(caddr_t addr, size_t len);
698
699/* munlockall.c */
700int munlockall(void);
701
702/* ndbm.c */
703void dbm_setdefwrite(DBM *db);
704int dbm_flush(DBM *db);
705int dbm_flushpag(DBM *db);
706DBM *dbm_open(const char *file, int flags, mode_t mode);
707void dbm_close(DBM *db);
708int dbm_close_status(DBM *db);
709datum dbm_fetch(DBM *db, datum key);
710int dbm_delete(DBM *db, datum key);
711int dbm_store(DBM *db, datum key, datum dat, int replace);
712datum dbm_firstkey(DBM *db);
713datum dbm_nextkey(DBM *db);
714datum dbm_do_nextkey(DBM *db, datum inkey);
715
716/* new_list.c */
717
718/* nftw.c */
719int nftw(const char *path, int (*fn)(), int depth, int flags);
720
721/* nl_langinfo.c */
722char *nl_langinfo(nl_item item);
723
724/* opendir.c */
725DIR *opendir(const char *filename);
726
727/* opt_data.c */
728
729/* perror.c */
730void perror(const char *s);
731
732/* psiginfo.c */
733void psiginfo(siginfo_t *sip, char *s);
734
735/* psignal.c */
736void psignal(int sig, const char *s);
737
738/* pt.c */
739char *ptsname(int fd);
740int unlockpt(int fd);
741int grantpt(int fd);
742
743/* putenv.c */
744int putenv(char *change);
745int setenv(const char *envname, const char *envval, int overwrite);
746int unsetenv(const char *name);
747
748/* putpwent.c */
749int putpwent(const struct passwd *p, FILE *f);
750
751/* qsort.c */
752void qsort(void *base, size_t n, size_t size, int (*compar)());
753
754/* raise.c */
755int raise(int sig);
756
757/* rand.c */
758void srand(unsigned x);
759int rand(void);
760int rand_r(unsigned int *);
761
762/* random.c */
763void srandom(unsigned x);
764char *initstate(unsigned seed, char *arg_state, size_t n);
765char *setstate(const char *arg_state);
766long random(void);
767
768/* rctlops.c */
769int rctl_walk(int (*callback)(const char *, void *), void *walk_data);
770hrtime_t rctlblk_get_firing_time(rctlblk_t *rblk);
771uint_t rctlblk_get_global_action(rctlblk_t *rblk);
772uint_t rctlblk_get_global_flags(rctlblk_t *rblk);
773uint_t rctlblk_get_local_action(rctlblk_t *rblk, int *signalp);
774uint_t rctlblk_get_local_flags(rctlblk_t *rblk);
775id_t rctlblk_get_recipient_pid(rctlblk_t *rblk);
776rctl_priv_t rctlblk_get_privilege(rctlblk_t *rblk);
777rctl_qty_t rctlblk_get_value(rctlblk_t *rblk);
778void rctlblk_set_local_action(rctlblk_t *rblk, uint_t action, int signal);
779void rctlblk_set_local_flags(rctlblk_t *rblk, uint_t flags);
780void rctlblk_set_privilege(rctlblk_t *rblk, rctl_priv_t priv);
781void rctlblk_set_value(rctlblk_t *rblk, rctl_qty_t val);
782size_t rctlblk_size(void);
783
784/* readdir.c */
785struct dirent *readdir(DIR *dirp);
786
787/* realpath.c */
788char *realpath(const char *_RESTRICT_KYWD raw, char *_RESTRICT_KYWD canon);
789
790/* regexpr.c */
791char *re_comp(const char *sp);
792int re_exec(const char *p1);
793
794/* rindex.c */
795char *rindex(const char *sp, int c);
796
797/* rename.c */
798int remove(const char *filename);
799int rename(const char *old, const char *new);
800
801/* rewinddir.c */
802#undef rewinddir
803void rewinddir(DIR *dirp);
804
805/* scandir.c */
806int alphasort(const struct dirent **, const struct dirent **);
807int scandir(const char *dirname, struct dirent *(*namelist[]),
808	int (*select)(const struct dirent *),
809	int (*dcomp)(const struct dirent **, const struct dirent **));
810
811/* scrwidth.c */
812int scrwidth(wchar_t c);
813
814/* seekdir.c */
815void seekdir(DIR *dirp, long loc);
816
817/* select.c */
818int pselect(int nfds,
819	fd_set *_RESTRICT_KYWD readfds,
820	fd_set *_RESTRICT_KYWD writefds,
821	fd_set *_RESTRICT_KYWD errorfds,
822	const struct timespec *_RESTRICT_KYWD timeout,
823	const sigset_t *_RESTRICT_KYWD sigmask);
824int select(int nfds,
825	fd_set *_RESTRICT_KYWD readfds,
826	fd_set *_RESTRICT_KYWD writefds,
827	fd_set *_RESTRICT_KYWD errorfds,
828	struct timeval *_RESTRICT_KYWD timeout);
829
830/* setlocale.c */
831char *setlocale(int cat, const char *loc);
832
833/* setpriority.c */
834int getpriority(int which, id_t who);
835int setpriority(int which, id_t who, int prio);
836
837/* settimeofday.c */
838int settimeofday(struct timeval *tp, void *);
839
840/* sigflag.c */
841int sigflag(int sig, int flag, int on);
842
843/* siglist.c */
844
845/* sigsend.c */
846int sigsend(idtype_t idtype, id_t id, int sig);
847
848/* sigsetops.c */
849int sigfillset(sigset_t *set);
850int sigemptyset(sigset_t *set);
851int sigaddset(sigset_t *set, int sig);
852int sigdelset(sigset_t *set, int sig);
853int sigismember(const sigset_t *set, int sig);
854
855/* scalls.c */
856unsigned sleep(unsigned sleep_tm);
857
858/* ssignal.c */
859int (*ssignal(int sig, int (*fn)())) ();
860int gsignal(int sig);
861
862/* str2id.c */
863
864/* str2sig.c */
865int str2sig(const char *s, int *sigp);
866int sig2str(int i, char *s);
867
868/* strcat.c */
869char *strcat(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2);
870
871/* strchr.c */
872char *strchr(const char *sp, int c);
873
874/* strcmp.c */
875int strcmp(const char *s1, const char *s2);
876
877/* strcpy.c */
878char *strcpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2);
879
880/* strcspn.c */
881size_t strcspn(const char *string, const char *charset);
882
883/* strdup.c */
884char *strdup(const char *s1);
885
886/* strerror.c */
887char *strerror(int errnum);
888int strerror_r(int errnum, char *strerrbuf, size_t buflen);
889
890/* strftime.c */
891size_t strftime(char *_RESTRICT_KYWD s, size_t maxsize,
892		const char *_RESTRICT_KYWD format,
893		const struct tm *_RESTRICT_KYWD tm);
894
895/* strlen.c */
896size_t strlen(const char *s);
897
898/* strncat.c */
899char *strncat(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2, size_t n);
900
901/* strncmp.c */
902int strncmp(const char *s1, const char *s2, size_t n);
903
904/* strncpy.c */
905char *strncpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2, size_t n);
906
907/* strpbrk.c */
908char *strpbrk(const char *string, const char *brkset);
909
910/* strrchr.c */
911char *strrchr(const char *sp, int c);
912
913/* strspn.c */
914size_t strspn(const char *string, const char *charset);
915
916/* strstr.c */
917char *strstr(const char *as1, const char *as2);
918
919/* strtod.c */
920double strtod(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
921float strtof(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
922long double strtold(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
923
924/* strtoimax.c */
925intmax_t strtoimax(const char *_RESTRICT_KYWD nptr,
926	char **_RESTRICT_KYWD endptr, int base);
927
928/* strtok.c */
929char *strtok(char *_RESTRICT_KYWD string, const char *_RESTRICT_KYWD sepset);
930char *strtok_r(char *_RESTRICT_KYWD, const char *_RESTRICT_KYWD,
931	char **_RESTRICT_KYWD);
932
933/* strtol.c */
934long strtol(const char *_RESTRICT_KYWD str, char **_RESTRICT_KYWD nptr,
935	int base);
936
937/* strtoul.c */
938unsigned long strtoul(const char *_RESTRICT_KYWD str,
939	char **_RESTRICT_KYWD nptr, int base);
940
941/* strtoumax.c */
942uintmax_t strtoumax(const char *_RESTRICT_KYWD nptr,
943		    char **_RESTRICT_KYWD endptr, int base);
944
945/* strxfrm.c */
946size_t strxfrm(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2,
947	size_t n);
948int strcoll(const char *s1, const char *s2);
949
950/* swab.c */
951void swab(const char *_RESTRICT_KYWD from, char *_RESTRICT_KYWD to, ssize_t n);
952
953/* swapctl.c */
954int swapctl(int cmd, void *arg);
955
956/* sysconf.c */
957long sysconf(int name);
958
959/* syslog.c */
960/* VARARGS2 */
961void syslog(int pri, const char *fmt, ...);
962void vsyslog(int pri, const char *fmt, va_list ap);
963void openlog(const char *ident, int logstat, int logfac);
964void closelog(void);
965int setlogmask(int pmask);
966
967/* tcdrain.c */
968int tcdrain(int fildes);
969
970/* tcflow.c */
971int tcflow(int fildes, int action);
972
973/* tcflush.c */
974int tcflush(int fildes, int queue_selector);
975
976/* tcgetattr.c */
977int tcgetattr(int fildes, struct termios *termios_p);
978
979/* tcgetpgrp.c */
980pid_t tcgetpgrp(int fd);
981
982/* tcgetsid.c */
983pid_t tcgetsid(int fd);
984
985/* tcsendbreak.c */
986int tcsendbreak(int fildes, int duration);
987
988/* tcsetattr.c */
989int tcsetattr(int fildes, int optional_actions,
990	const struct termios *termios_p);
991
992/* tcsetpgrp.c */
993int tcsetpgrp(int fd, pid_t pgrp);
994
995/* tell.c */
996long tell(int f);
997
998/* telldir.c */
999long telldir(DIR *dirp);
1000
1001/* tfind.c */
1002void *tfind(const void *ky, void *const *rtp, int (*compar)());
1003
1004/* time_comm.c */
1005struct tm *localtime(const time_t *timep);
1006struct tm *localtime_r(const time_t *_RESTRICT_KYWD, struct tm *_RESTRICT_KYWD);
1007struct tm *gmtime(const time_t *clock);
1008struct tm *gmtime_r(const time_t *_RESTRICT_KYWD, struct tm *_RESTRICT_KYWD);
1009double difftime(time_t time1, time_t time0);
1010time_t mktime(struct tm *timeptr);
1011void _ltzset(time_t tim);
1012void tzset(void);
1013
1014/* time_data.c */
1015
1016/* time_gdata.c */
1017
1018/* tolower.c */
1019int tolower(int c);
1020
1021/* toupper.c */
1022int toupper(int c);
1023
1024/* truncate.c */
1025int ftruncate(int fildes, off_t len);
1026int truncate(const char *path, off_t len);
1027
1028/* tsearch.c */
1029void *tsearch(const void *ky, void **rtp, int (*compar)());
1030void *tdelete(const void *ky, void **rtp, int (*compar)());
1031void twalk(const void *rt, void (*action)());
1032
1033/* ttyname.c */
1034char *ttyname(int f);
1035char *_ttyname_dev(dev_t rdev, char *buffer, size_t buflen);
1036char *ttyname_r(int, char *, int);
1037
1038/* ttyslot.c */
1039int ttyslot(void);
1040
1041/* ualarm.c */
1042unsigned ualarm(unsigned usecs, unsigned reload);
1043
1044/* ulimit.c */
1045/* VARARGS1 */
1046long ulimit(int cmd, ...);
1047
1048/* scalls.c */
1049int usleep(unsigned n);
1050
1051/* valloc.c */
1052void *valloc(size_t size);
1053
1054/* waitpid.c */
1055pid_t wait(int *stat_loc);
1056pid_t waitpid(pid_t pid, int *stat_loc, int options);
1057pid_t wait3(int *status, int options, struct rusage *rp);
1058pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage);
1059
1060/* wcstombs.c */
1061size_t wcstombs(char *_RESTRICT_KYWD s, const wchar_t *_RESTRICT_KYWD pwcs,
1062	size_t n);
1063
1064/* wctomb.c */
1065int wctomb(char *s, wchar_t wchar);
1066
1067/* wdata.c */
1068
1069/* wisprint.c */
1070int wisprint(wchar_t c);
1071
1072/* xgetwidth.c */
1073void _xgetwidth(void);
1074
1075/*
1076 * /usr/src/lib/libc/port/intl routines
1077 */
1078
1079/* gettext.c */
1080char *bindtextdomain(const char *domain, const char *binding);
1081char *dcgettext(const char *domain, const char *msg_id, const int category);
1082char *dgettext(const char *domain, const char *msg_id);
1083char *gettext(const char *msg_id);
1084char *textdomain(const char *domain);
1085
1086/*
1087 * /usr/src/lib/libc/port/print routines
1088 */
1089
1090/* fprintf.c */
1091/* VARARGS2 */
1092int fprintf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD format, ...);
1093
1094/* printf.c */
1095/* VARARGS1 */
1096int printf(const char *_RESTRICT_KYWD format, ...);
1097
1098/* snprintf.c */
1099/* VARARGS2 */
1100int snprintf(char *_RESTRICT_KYWD string, size_t n,
1101		const char *_RESTRICT_KYWD format, ...);
1102
1103/* sprintf.c */
1104/* VARARGS2 */
1105int sprintf(char *_RESTRICT_KYWD string,
1106		const char *_RESTRICT_KYWD format, ...);
1107
1108/* vfprintf.c */
1109/* VARARGS2 */
1110int vfprintf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD format,
1111		va_list);
1112
1113/* vprintf.c */
1114/* VARARGS1 */
1115int vprintf(const char *_RESTRICT_KYWD format, va_list);
1116
1117/* vsnprintf.c */
1118/* VARARGS2 */
1119int vsnprintf(char *_RESTRICT_KYWD string, size_t n,
1120		const char *_RESTRICT_KYWD format, va_list);
1121
1122/* vsprintf.c */
1123/* VARARGS2 */
1124int vsprintf(char *_RESTRICT_KYWD string, const char *_RESTRICT_KYWD format,
1125	va_list);
1126
1127/*
1128 * /usr/src/lib/libc/port/regex routines
1129 */
1130
1131/* regex.c */
1132char *regex(const char *regexp, const char *stringp, ...);
1133#ifdef __loc1
1134#undef __loc1
1135#endif
1136char *__loc1;
1137
1138/* regcmp.c */
1139char *regcmp(const char *regexp, ...);
1140#ifdef __i_size
1141#undef __i_size
1142#endif
1143int __i_size;
1144
1145/*
1146 * /usr/src/lib/libc/port/stdio routines
1147 */
1148
1149/* _filbuf.c */
1150int _filbuf(FILE *iop);
1151
1152/* _flsbuf.c */
1153int _flsbuf(int ch, FILE *iop);
1154
1155/* _wrtchk.c */
1156int _wrtchk(FILE *iop);
1157
1158/* clearerr.c */
1159void clearerr(FILE *iop);
1160
1161/* ctermid.c */
1162char *ctermid(char *s);
1163char *ctermid_r(char *s);
1164
1165/* cuserid.c */
1166char *cuserid(char *s);
1167
1168/* data.c */
1169
1170/* doscan.c */
1171int _doscan(FILE *iop, const char *fmt, va_list va_alist);
1172
1173/* fdopen.c */
1174FILE *fdopen(int fd, const char *type);
1175
1176/* feof.c */
1177int feof(FILE *iop);
1178
1179/* ferror.c */
1180int ferror(FILE *iop);
1181
1182/* fgetc.c */
1183int fgetc(FILE *iop);
1184
1185/* fgets.c */
1186char *fgets(char *_RESTRICT_KYWD buf, int size, FILE *_RESTRICT_KYWD iop);
1187
1188/* fileno.c */
1189int _fileno(FILE *iop);
1190
1191/* flush.c */
1192void _cleanup(void);
1193FILE *_findiop(void);
1194typedef unsigned char Uchar;
1195void _setbufend(FILE *iop, Uchar *end);
1196Uchar *_realbufend(FILE *iop);
1197void _bufsync(FILE *iop, Uchar *bufend);
1198int _xflsbuf(FILE *iop);
1199int fflush(FILE *iop);
1200int fclose(FILE *iop);
1201
1202/* fopen.c */
1203FILE *fopen(const char *_RESTRICT_KYWD name, const char *_RESTRICT_KYWD type);
1204FILE *freopen(const char *_RESTRICT_KYWD name, const char *_RESTRICT_KYWD type,
1205		FILE *_RESTRICT_KYWD iop);
1206
1207/* fpos.c */
1208int fgetpos(FILE *_RESTRICT_KYWD stream, fpos_t *_RESTRICT_KYWD pos);
1209int fsetpos(FILE *stream, const fpos_t *pos);
1210
1211/* fputc.c */
1212int fputc(int ch, FILE *iop);
1213
1214/* fputs.c */
1215int fputs(const char *_RESTRICT_KYWD ptr, FILE *_RESTRICT_KYWD iop);
1216
1217/* fread.c */
1218size_t fread(void *_RESTRICT_KYWD ptr, size_t size, size_t count,
1219	FILE *_RESTRICT_KYWD iop);
1220
1221/* fseek.c */
1222int fseek(FILE *iop, long offset, int ptrname);
1223
1224/* ftell.c */
1225long ftell(FILE *iop);
1226
1227/* fwrite.c */
1228size_t fwrite(const void *_RESTRICT_KYWD ptr1, size_t size, size_t count,
1229	FILE *_RESTRICT_KYWD iop);
1230
1231/* getc.c */
1232int getc(FILE *iop);
1233
1234/* getchar.c */
1235int getchar(void);
1236
1237/* getpass.c */
1238char *getpass(const char *prompt);
1239
1240/* getpass.c */
1241char *getpassphrase(const char *prompt);
1242
1243/* gets.c */
1244char *gets(char *buf);
1245
1246/* getw.c */
1247int getw(FILE *stream);
1248
1249/* popen.c */
1250FILE *popen(const char *cmd, const char *mode);
1251int pclose(FILE *ptr);
1252
1253/* putc.c */
1254int putc(int ch, FILE *iop);
1255
1256/* putchar.c */
1257int putchar(int ch);
1258
1259/* puts.c */
1260int puts(const char *ptr);
1261
1262/* putw.c */
1263int putw(int w, FILE *stream);
1264
1265/* rewind.c */
1266void rewind(FILE *iop);
1267
1268/* scanf.c */
1269/* VARARGS1 */
1270int scanf(const char *_RESTRICT_KYWD fmt, ...);
1271
1272/* VARARGS2 */
1273int fscanf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD fmt, ...);
1274
1275/* VARARGS2 */
1276int sscanf(const char *_RESTRICT_KYWD str, const char *_RESTRICT_KYWD fmt, ...);
1277
1278/* setbuf.c */
1279void setbuf(FILE *_RESTRICT_KYWD iop, char *_RESTRICT_KYWD abuf);
1280
1281/* setvbuf.c */
1282int setvbuf(FILE *_RESTRICT_KYWD iop, char *_RESTRICT_KYWD abuf, int type,
1283		size_t size);
1284
1285/* system.c */
1286int system(const char *s);
1287
1288/* tempnam.c */
1289char *tempnam(const char *dir, const char *pfx);
1290
1291/* tmpfile.c */
1292FILE *tmpfile(void);
1293
1294/* tmpnam.c */
1295char *tmpnam(char *s);
1296char *tmpnam_r(char *);
1297
1298/* ungetc.c */
1299int ungetc(int c, FILE *iop);
1300
1301/*
1302 * /usr/src/lib/libc/port/sys routines
1303 */
1304
1305/* exacctsys.c */
1306size_t getacct(idtype_t idtype, id_t id, void *buf, size_t bufsize);
1307int putacct(idtype_t idtype, id_t id, void *buf, size_t bufsize, int flags);
1308int wracct(idtype_t idtype, id_t id, int flags);
1309
1310/* execl.c */
1311/* VARARGS1 */
1312int execl(const char *name, const char *, ...);
1313
1314/* execle.c */
1315int execle(const char *, const char *file, ...);
1316
1317/* execv.c */
1318int execv(const char *file, char *const *argv);
1319
1320/* lockf.c */
1321int lockf(int fildes, int function, off_t size);
1322
1323/* meminfosys.c */
1324int meminfo(const uint64_t *inaddr, int addr_count, const uint_t *info_req,
1325	int info_count, uint64_t *outdata, uint_t *validity);
1326
1327/* msgsys.c */
1328int msgget(key_t key, int msgflg);
1329int msgctl(int msqid, int cmd, struct msqid_ds *buf);
1330ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
1331int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
1332
1333/* nfssys.c */
1334/*
1335int exportfs(char *dir, struct export *ep);
1336int nfs_getfh(char *path, fhandle_t *fhp);
1337int nfssvc(int fd);
1338*/
1339
1340/* psetsys.c */
1341int pset_create(psetid_t *npset);
1342int pset_destroy(psetid_t pset);
1343int pset_assign(psetid_t pset, processorid_t cpu, psetid_t *opset);
1344int pset_assign_forced(psetid_t pset, processorid_t cpu, psetid_t *opset);
1345int pset_info(psetid_t pset, int *type, u_int *numcpus, processorid_t *cpulist);
1346int pset_bind(psetid_t pset, idtype_t idtype, id_t id, psetid_t *opset);
1347
1348/* rctlsys.c */
1349int getrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
1350    int flags);
1351int setrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
1352    int flags);
1353/* (private functions) */
1354int setprojrctl(const char *name, rctlblk_t *new_rblk, size_t size, int flags);
1355int rctlctl(const char *, rctlblk_t *, int);
1356size_t rctllist(char *, size_t);
1357
1358
1359/* semsys.c */
1360int semctl(int semid, int semnum, int cmd, ...);
1361int semget(key_t key, int nsems, int semflg);
1362int semop(int semid, struct sembuf *sops, size_t nsops);
1363
1364/* shmsys.c */
1365void *shmat(int shmid, const void *shmaddr, int shmflg);
1366int shmctl(int shmid, int cmd, struct shmid_ds *buf);
1367#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4)
1368int shmdt(const void *);
1369#else
1370int shmdt(char *);
1371#endif /* defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4) */
1372int shmget(key_t key, size_t size, int shmflg);
1373
1374/* tasksys.c */
1375taskid_t settaskid(projid_t project, uint_t flags);
1376taskid_t gettaskid(void);
1377projid_t getprojid(void);
1378
1379/*
1380 * /usr/src/lib/libc/port/widec routines
1381 */
1382
1383/* fgetws.c */
1384wchar_t *fgetws(wchar_t *_RESTRICT_KYWD ptr, int  size,
1385	FILE *_RESTRICT_KYWD iop);
1386
1387/* fputwc.c */
1388wint_t fputwc(wint_t wc, FILE *iop);
1389wint_t putwc(wint_t wc, FILE *iop);
1390
1391/* fputws.c */
1392int fputws(const wchar_t *_RESTRICT_KYWD ptr, FILE *_RESTRICT_KYWD iop);
1393
1394/* getwchar.c */
1395wint_t getwchar(void);
1396
1397/* getwidth.c */
1398void getwidth(eucwidth_t *eucstruct);
1399
1400/* getws.c */
1401wchar_t *getws(wchar_t *ptr);
1402
1403/* iswctype.c */
1404int iswctype(wint_t wc, wctype_t charclass);
1405int iswalpha(wint_t c);
1406int iswupper(wint_t c);
1407int iswlower(wint_t c);
1408int iswdigit(wint_t c);
1409int iswxdigit(wint_t c);
1410int iswalnum(wint_t c);
1411int iswspace(wint_t c);
1412int iswpunct(wint_t c);
1413int iswprint(wint_t c);
1414int iswgraph(wint_t c);
1415int iswcntrl(wint_t c);
1416int isphonogram(wint_t c);
1417int isideogram(wint_t c);
1418int isenglish(wint_t c);
1419int isnumber(wint_t c);
1420int isspecial(wint_t c);
1421
1422/* libwcollate.c */
1423
1424/* putwchar.c */
1425wint_t putwchar(wint_t c);
1426
1427/* putws.c */
1428int putws(const wchar_t *ptr);
1429
1430/* scrwidth.c */
1431
1432/* strtows.c */
1433wchar_t *strtows(wchar_t *s1, char *s2);
1434char *wstostr(char *s1, wchar_t *s2);
1435
1436/* trwctype.c */
1437wint_t towupper(wint_t c);
1438wint_t towlower(wint_t c);
1439
1440/* ungetwc.c */
1441wint_t ungetwc(wint_t wc, FILE *iop);
1442
1443/* wcollate.c */
1444size_t wcsxfrm(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1445	size_t n);
1446int wcscoll(const wchar_t *s1, const wchar_t *s2);
1447
1448/* wcsftime.c */
1449#if !defined(__amd64) 		/* XX64 - fix me */
1450size_t wcsftime(wchar_t *wcs, size_t maxsize,
1451	const char *format, const struct tm *timeptr);
1452#endif	/* __amd64 */
1453
1454/* wcstring.c */
1455wint_t fgetwc(FILE *iop);
1456wint_t getwc(FILE *iop);
1457int wcwidth(wchar_t wc);
1458int wcswidth(const wchar_t *pwcs, size_t n);
1459
1460/* wcswcs.c */
1461wchar_t *wcswcs(const wchar_t *ws1, const wchar_t *ws2);
1462
1463/* wcsxfrm.c - empty file! */
1464
1465/* wcsxfrm.xpg4.c */
1466
1467/* wisprint.c */
1468int wisprint(wchar_t c);
1469
1470/* wscasecmp.c */
1471int wscasecmp(const wchar_t *s1, const wchar_t *s2);
1472
1473/* wscat.c */
1474wchar_t *wcscat(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2);
1475wchar_t *wscat(wchar_t *s1, const wchar_t *s2);
1476
1477/* wschr.c */
1478wchar_t *wcschr(const wchar_t *sp, wchar_t c);
1479wchar_t *wschr(const wchar_t *sp, wchar_t c);
1480
1481/* wscmp.c */
1482int wcscmp(const wchar_t *s1, const wchar_t *s2);
1483int wscmp(const wchar_t *s1, const wchar_t *s2);
1484
1485/* wscol.c */
1486int wscol(const wchar_t *s1);
1487
1488/* wscpy.c */
1489wchar_t *wcscpy(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2);
1490wchar_t *wscpy(wchar_t *s1, const wchar_t *s2);
1491
1492/* wscspn.c */
1493size_t wcscspn(const wchar_t *string, const wchar_t *charset);
1494size_t wscspn(const wchar_t *string, const wchar_t *charset);
1495
1496/* wsdup.c */
1497wchar_t *wsdup(const wchar_t *s1);
1498
1499/* wslen.c */
1500size_t wcslen(const wchar_t *s);
1501size_t wslen(const wchar_t *s);
1502
1503/* wsncasecmp.c */
1504int wsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1505
1506/* wsncat.c */
1507wchar_t *wcsncat(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1508	size_t n);
1509wchar_t *wsncat(wchar_t *s1, const wchar_t *s2, size_t n);
1510
1511/* wsncmp.c */
1512int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1513int wsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1514
1515/* wsncpy.c */
1516wchar_t *wcsncpy(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1517	size_t n);
1518wchar_t *wsncpy(wchar_t *s1, const wchar_t *s2, size_t n);
1519
1520/* wspbrk.c */
1521wchar_t *wcspbrk(const wchar_t *string, const wchar_t *brkset);
1522wchar_t *wspbrk(const wchar_t *string, const wchar_t *brkset);
1523
1524/* wsprintf.c */
1525int wsprintf(wchar_t *wstring, const char *format, ...);
1526
1527/* wsrchr.c */
1528wchar_t *wcsrchr(const wchar_t *sp, wchar_t c);
1529wchar_t *wsrchr(const wchar_t *sp, wchar_t c);
1530
1531/* wsscanf.c */
1532int wsscanf(wchar_t *s, const char *format, ...);
1533
1534/* wssize.c */
1535
1536/* wsspn.c */
1537size_t wcsspn(const wchar_t *string, const wchar_t *charset);
1538size_t wsspn(const wchar_t *string, const wchar_t *charset);
1539
1540/* wstod.c */
1541double wcstod(const wchar_t *_RESTRICT_KYWD cp, wchar_t **_RESTRICT_KYWD ptr);
1542float wcstof(const wchar_t *_RESTRICT_KYWD cp, wchar_t **_RESTRICT_KYWD ptr);
1543long double wcstold(const wchar_t *_RESTRICT_KYWD cp,
1544	wchar_t **_RESTRICT_KYWD ptr);
1545double wstod(const wchar_t *cp, wchar_t **ptr);
1546
1547/* wstok.c */
1548#if !defined(__amd64) 		/* XX64 - fix me */
1549wchar_t *wcstok(wchar_t *string, const wchar_t *sepset);
1550wchar_t *wstok(wchar_t *string, const wchar_t *sepset);
1551#endif	/* __amd64 */
1552
1553/* wcstol.c */
1554long wcstol(const wchar_t *_RESTRICT_KYWD str, wchar_t **_RESTRICT_KYWD ptr,
1555	int base);
1556long long wcstoll(const wchar_t *_RESTRICT_KYWD str,
1557	wchar_t **_RESTRICT_KYWD ptr, int base);
1558
1559/* wcstoul.c */
1560unsigned long wcstoul(const wchar_t *_RESTRICT_KYWD str,
1561	wchar_t **_RESTRICT_KYWD ptr, int base);
1562unsigned long long wcstoull(const wchar_t *_RESTRICT_KYWD str,
1563	wchar_t **_RESTRICT_KYWD ptr, int base);
1564
1565/* wcstoimax.c */
1566intmax_t wcstoimax(const wchar_t *_RESTRICT_KYWD nptr,
1567	wchar_t **_RESTRICT_KYWD endptr, int base);
1568uintmax_t wcstoumax(const wchar_t *_RESTRICT_KYWD nptr,
1569	wchar_t **_RESTRICT_KYWD endptr, int base);
1570
1571/* wstol.c */
1572long wstol(const wchar_t *str, wchar_t **ptr, int base);
1573
1574/* wstoll.c */
1575long long wstoll(const wchar_t *str, wchar_t **ptr, int base);
1576long long watoll(const wchar_t *p);
1577
1578/* wsxfrm.c */
1579size_t wsxfrm(wchar_t *s1, const wchar_t *s2, size_t n);
1580int wscoll(const wchar_t *s1, const wchar_t *s2);
1581
1582/*
1583 * /usr/src/lib/libc/port/gen/event_port.c
1584 */
1585int port_dispatch(int port, int flags, int source, int events, uintptr_t object,
1586    void *user);
1587
1588/*
1589 * /usr/src/lib/libc/$MACH/gen routines
1590 */
1591
1592/* alloca.s */
1593
1594void *__builtin_alloca(size_t);
1595
1596/*
1597 * modctl(int arg, ...) and utssys(...) are not available from a header
1598 * file, but our utilities which make use of it should be able to be
1599 * lint clean.
1600 */
1601int modctl(int arg, ...);
1602int utssys(void *buf, int arg, int type, void *outbp);
1603
1604
1605typedef float single;
1606typedef unsigned extended[3];
1607typedef long double quadruple;
1608typedef unsigned fp_exception_field_type;
1609
1610typedef char decimal_string[512];
1611
1612enum fp_class_type {
1613	fp_zero	 = 0,
1614	fp_subnormal    = 1,
1615	fp_normal	= 2,
1616	fp_infinity	= 3,
1617	fp_quiet	= 4,
1618	fp_signaling    = 5
1619};
1620
1621enum fp_direction_type {
1622	fp_nearest	= 0,
1623	fp_tozero	= 1,
1624	fp_positive	= 2,
1625	fp_negative	= 3
1626};
1627
1628typedef struct {
1629	enum fp_class_type fpclass;
1630	int sign;
1631	int exponent;
1632	decimal_string ds;
1633	int more;
1634	int ndigits;
1635} decimal_record;
1636
1637enum decimal_form {
1638	fixed_form,
1639	floating_form
1640};
1641
1642typedef struct {
1643	enum fp_direction_type rd;
1644	enum decimal_form df;
1645	int ndigits;
1646} decimal_mode;
1647
1648enum decimal_string_form {
1649	invalid_form,
1650	whitespace_form,
1651	fixed_int_form,
1652	fixed_intdot_form,
1653	fixed_dotfrac_form,
1654	fixed_intdotfrac_form,
1655	floating_int_form,
1656	floating_intdot_form,
1657	floating_dotfrac_form,
1658	floating_intdotfrac_form,
1659	inf_form,
1660	infinity_form,
1661	nan_form,
1662	nanstring_form
1663};
1664
1665typedef int sigfpe_code_type;
1666
1667typedef void (*sigfpe_handler_type)();
1668
1669extern sigfpe_handler_type sigfpe(sigfpe_code_type, sigfpe_handler_type);
1670
1671extern void single_to_decimal(single *, decimal_mode *, decimal_record *,
1672				fp_exception_field_type *);
1673
1674extern void double_to_decimal(double *, decimal_mode *, decimal_record *,
1675				fp_exception_field_type *);
1676extern void extended_to_decimal(extended *, decimal_mode *,
1677				decimal_record *, fp_exception_field_type *);
1678extern void quadruple_to_decimal(quadruple *, decimal_mode *,
1679				decimal_record *, fp_exception_field_type *);
1680extern void decimal_to_single(single *, decimal_mode *, decimal_record *,
1681				fp_exception_field_type *);
1682extern void decimal_to_double(double *, decimal_mode *, decimal_record *,
1683				fp_exception_field_type *);
1684extern void decimal_to_extended(extended *, decimal_mode *,
1685				decimal_record *, fp_exception_field_type *);
1686extern void decimal_to_quadruple(quadruple *, decimal_mode *,
1687				decimal_record *, fp_exception_field_type *);
1688extern void string_to_decimal(char **, int, int, decimal_record *,
1689				enum decimal_string_form *, char **);
1690extern void func_to_decimal(char **, int, int, decimal_record *,
1691				enum decimal_string_form *, char **,
1692				int (*)(void), int *, int (*)(int));
1693extern void file_to_decimal(char **, int, int, decimal_record *,
1694				enum decimal_string_form *, char **,
1695				FILE *, int *);
1696extern char *seconvert(single *, int, int *, int *, char *);
1697extern char *sfconvert(single *, int, int *, int *, char *);
1698extern char *sgconvert(single *, int, int, char *);
1699extern char *econvert(double, int, int *, int *, char *);
1700extern char *fconvert(double, int, int *, int *, char *);
1701extern char *gconvert(double, int, int, char *);
1702extern char *qeconvert(quadruple *, int, int *, int *, char *);
1703extern char *qfconvert(quadruple *, int, int *, int *, char *);
1704extern char *qgconvert(quadruple *, int, int, char *);
1705
1706extern void __assert(const char *, const char *, int);
1707
1708extern int setjmp(jmp_buf);
1709extern void longjmp(jmp_buf, int);
1710extern int sigsetjmp(sigjmp_buf, int);
1711extern void siglongjmp(sigjmp_buf, int);
1712
1713int uname(struct utsname *);
1714int _uname(struct utsname *);
1715
1716int errno;
1717int *___errno()
1718{ return (&errno); }
1719
1720extern int getloadavg(double [], int);
1721
1722extern long pcsample(uintptr_t [], long);
1723
1724int fstat(int, struct stat *);
1725int stat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
1726int lstat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
1727int mknod(const char *, mode_t, dev_t);
1728
1729extern int __init_daemon_priv(int, uid_t uid, gid_t gid, ...);
1730extern void __fini_daemon_priv(const char *, ...);
1731extern int __init_suid_priv(int, ...);
1732extern int __priv_bracket(priv_op_t);
1733extern void __priv_relinquish(void);
1734extern const char * __priv_getsetbynum(const void *, int);
1735extern char * __priv_set_to_str(void *, const priv_set_t *, char, int);
1736
1737/* private interface to get the groups list for a certain user */
1738int _getgroupsbymember(const char *, gid_t[], int, int);
1739
1740/* private interface for use only by java */
1741volatile sc_shared_t *volatile *_thr_schedctl(void);
1742
1743/* private interface to unmount all autofs mounts */
1744int _autofssys(enum autofssys_op, void *);
1745
1746/* label.c */
1747extern int is_system_labeled(void);
1748
1749/* until TOG resolves the name, keep this private */
1750int __accessat(int, const char *, int);
1751
1752extern int uconv_u16tou32(const uint16_t *, size_t *, uint32_t *, size_t *,
1753	int);
1754extern int uconv_u16tou8(const uint16_t *, size_t *, uchar_t *, size_t *, int);
1755extern int uconv_u32tou16(const uint32_t *, size_t *, uint16_t *, size_t *,
1756	int);
1757extern int uconv_u32tou8(const uint32_t *, size_t *, uchar_t *, size_t *, int);
1758extern int uconv_u8tou16(const uchar_t *, size_t *, uint16_t *, size_t *, int);
1759extern int uconv_u8tou32(const uchar_t *, size_t *, uint32_t *, size_t *, int);
1760extern int u8_validate(char *, size_t, char **, int, int *);
1761extern int u8_strcmp(const char *, const char *, size_t, int, size_t, int *);
1762extern size_t u8_textprep_str(char *, size_t *, char *, size_t *, int, size_t,
1763	int *);
1764