xref: /titanic_41/usr/src/lib/libc/port/llib-lc (revision 67e3a03ed4a2813074d36330f062ed6e593a4937)
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 */
802void _rewinddir(DIR *dirp);
803
804/* scandir.c */
805int alphasort(const struct dirent **, const struct dirent **);
806int scandir(const char *dirname, struct dirent *(*namelist[]),
807	int (*select)(const struct dirent *),
808	int (*dcomp)(const struct dirent **, const struct dirent **));
809
810/* scrwidth.c */
811int scrwidth(wchar_t c);
812
813/* seekdir.c */
814void seekdir(DIR *dirp, long loc);
815
816/* select.c */
817int pselect(int nfds,
818	fd_set *_RESTRICT_KYWD readfds,
819	fd_set *_RESTRICT_KYWD writefds,
820	fd_set *_RESTRICT_KYWD errorfds,
821	const struct timespec *_RESTRICT_KYWD timeout,
822	const sigset_t *_RESTRICT_KYWD sigmask);
823int select(int nfds,
824	fd_set *_RESTRICT_KYWD readfds,
825	fd_set *_RESTRICT_KYWD writefds,
826	fd_set *_RESTRICT_KYWD errorfds,
827	struct timeval *_RESTRICT_KYWD timeout);
828
829/* setlocale.c */
830char *setlocale(int cat, const char *loc);
831
832/* setpriority.c */
833int getpriority(int which, id_t who);
834int setpriority(int which, id_t who, int prio);
835
836/* settimeofday.c */
837int settimeofday(struct timeval *tp, void *);
838
839/* sigflag.c */
840int sigflag(int sig, int flag, int on);
841
842/* siglist.c */
843
844/* sigsend.c */
845int sigsend(idtype_t idtype, id_t id, int sig);
846
847/* sigsetops.c */
848int sigfillset(sigset_t *set);
849int sigemptyset(sigset_t *set);
850int sigaddset(sigset_t *set, int sig);
851int sigdelset(sigset_t *set, int sig);
852int sigismember(const sigset_t *set, int sig);
853
854/* scalls.c */
855unsigned sleep(unsigned sleep_tm);
856
857/* ssignal.c */
858int (*ssignal(int sig, int (*fn)())) ();
859int gsignal(int sig);
860
861/* str2id.c */
862
863/* str2sig.c */
864int str2sig(const char *s, int *sigp);
865int sig2str(int i, char *s);
866
867/* strcat.c */
868char *strcat(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2);
869
870/* strchr.c */
871char *strchr(const char *sp, int c);
872
873/* strcmp.c */
874int strcmp(const char *s1, const char *s2);
875
876/* strcpy.c */
877char *strcpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2);
878
879/* strcspn.c */
880size_t strcspn(const char *string, const char *charset);
881
882/* strdup.c */
883char *strdup(const char *s1);
884
885/* strerror.c */
886char *strerror(int errnum);
887int strerror_r(int errnum, char *strerrbuf, size_t buflen);
888
889/* strftime.c */
890size_t strftime(char *_RESTRICT_KYWD s, size_t maxsize,
891		const char *_RESTRICT_KYWD format,
892		const struct tm *_RESTRICT_KYWD tm);
893
894/* strlen.c */
895size_t strlen(const char *s);
896
897/* strncat.c */
898char *strncat(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2, size_t n);
899
900/* strncmp.c */
901int strncmp(const char *s1, const char *s2, size_t n);
902
903/* strncpy.c */
904char *strncpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2, size_t n);
905
906/* strpbrk.c */
907char *strpbrk(const char *string, const char *brkset);
908
909/* strrchr.c */
910char *strrchr(const char *sp, int c);
911
912/* strspn.c */
913size_t strspn(const char *string, const char *charset);
914
915/* strstr.c */
916char *strstr(const char *as1, const char *as2);
917
918/* strtod.c */
919double strtod(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
920float strtof(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
921long double strtold(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
922
923/* strtoimax.c */
924intmax_t strtoimax(const char *_RESTRICT_KYWD nptr,
925	char **_RESTRICT_KYWD endptr, int base);
926
927/* strtok.c */
928char *strtok(char *_RESTRICT_KYWD string, const char *_RESTRICT_KYWD sepset);
929char *strtok_r(char *_RESTRICT_KYWD, const char *_RESTRICT_KYWD,
930	char **_RESTRICT_KYWD);
931
932/* strtol.c */
933long strtol(const char *_RESTRICT_KYWD str, char **_RESTRICT_KYWD nptr,
934	int base);
935
936/* strtoul.c */
937unsigned long strtoul(const char *_RESTRICT_KYWD str,
938	char **_RESTRICT_KYWD nptr, int base);
939
940/* strtoumax.c */
941uintmax_t strtoumax(const char *_RESTRICT_KYWD nptr,
942		    char **_RESTRICT_KYWD endptr, int base);
943
944/* strxfrm.c */
945size_t strxfrm(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2,
946	size_t n);
947int strcoll(const char *s1, const char *s2);
948
949/* swab.c */
950void swab(const char *_RESTRICT_KYWD from, char *_RESTRICT_KYWD to, ssize_t n);
951
952/* swapctl.c */
953int swapctl(int cmd, void *arg);
954
955/* sysconf.c */
956long sysconf(int name);
957
958/* syslog.c */
959/* VARARGS2 */
960void syslog(int pri, const char *fmt, ...);
961void vsyslog(int pri, const char *fmt, va_list ap);
962void openlog(const char *ident, int logstat, int logfac);
963void closelog(void);
964int setlogmask(int pmask);
965
966/* tcdrain.c */
967int tcdrain(int fildes);
968
969/* tcflow.c */
970int tcflow(int fildes, int action);
971
972/* tcflush.c */
973int tcflush(int fildes, int queue_selector);
974
975/* tcgetattr.c */
976int tcgetattr(int fildes, struct termios *termios_p);
977
978/* tcgetpgrp.c */
979pid_t tcgetpgrp(int fd);
980
981/* tcgetsid.c */
982pid_t tcgetsid(int fd);
983
984/* tcsendbreak.c */
985int tcsendbreak(int fildes, int duration);
986
987/* tcsetattr.c */
988int tcsetattr(int fildes, int optional_actions,
989	const struct termios *termios_p);
990
991/* tcsetpgrp.c */
992int tcsetpgrp(int fd, pid_t pgrp);
993
994/* tell.c */
995long tell(int f);
996
997/* telldir.c */
998long telldir(DIR *dirp);
999
1000/* tfind.c */
1001void *tfind(const void *ky, void *const *rtp, int (*compar)());
1002
1003/* time_comm.c */
1004struct tm *localtime(const time_t *timep);
1005struct tm *localtime_r(const time_t *_RESTRICT_KYWD, struct tm *_RESTRICT_KYWD);
1006struct tm *gmtime(const time_t *clock);
1007struct tm *gmtime_r(const time_t *_RESTRICT_KYWD, struct tm *_RESTRICT_KYWD);
1008double difftime(time_t time1, time_t time0);
1009time_t mktime(struct tm *timeptr);
1010void _ltzset(time_t tim);
1011void tzset(void);
1012
1013/* time_data.c */
1014
1015/* time_gdata.c */
1016
1017/* tolower.c */
1018int tolower(int c);
1019
1020/* toupper.c */
1021int toupper(int c);
1022
1023/* truncate.c */
1024int ftruncate(int fildes, off_t len);
1025int truncate(const char *path, off_t len);
1026
1027/* tsearch.c */
1028void *tsearch(const void *ky, void **rtp, int (*compar)());
1029void *tdelete(const void *ky, void **rtp, int (*compar)());
1030void twalk(const void *rt, void (*action)());
1031
1032/* ttyname.c */
1033char *ttyname(int f);
1034char *_ttyname_dev(dev_t rdev, char *buffer, size_t buflen);
1035char *ttyname_r(int, char *, int);
1036
1037/* ttyslot.c */
1038int ttyslot(void);
1039
1040/* ualarm.c */
1041unsigned ualarm(unsigned usecs, unsigned reload);
1042
1043/* ulimit.c */
1044/* VARARGS1 */
1045long ulimit(int cmd, ...);
1046
1047/* scalls.c */
1048int usleep(unsigned n);
1049
1050/* valloc.c */
1051void *valloc(size_t size);
1052
1053/* waitpid.c */
1054pid_t wait(int *stat_loc);
1055pid_t waitpid(pid_t pid, int *stat_loc, int options);
1056pid_t wait3(int *status, int options, struct rusage *rp);
1057pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage);
1058
1059/* wcstombs.c */
1060size_t wcstombs(char *_RESTRICT_KYWD s, const wchar_t *_RESTRICT_KYWD pwcs,
1061	size_t n);
1062
1063/* wctomb.c */
1064int wctomb(char *s, wchar_t wchar);
1065
1066/* wdata.c */
1067
1068/* wisprint.c */
1069int wisprint(wchar_t c);
1070
1071/* xgetwidth.c */
1072void _xgetwidth(void);
1073
1074/*
1075 * /usr/src/lib/libc/port/intl routines
1076 */
1077
1078/* gettext.c */
1079char *bindtextdomain(const char *domain, const char *binding);
1080char *dcgettext(const char *domain, const char *msg_id, const int category);
1081char *dgettext(const char *domain, const char *msg_id);
1082char *gettext(const char *msg_id);
1083char *textdomain(const char *domain);
1084
1085/*
1086 * /usr/src/lib/libc/port/print routines
1087 */
1088
1089/* fprintf.c */
1090/* VARARGS2 */
1091int fprintf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD format, ...);
1092
1093/* printf.c */
1094/* VARARGS1 */
1095int printf(const char *_RESTRICT_KYWD format, ...);
1096
1097/* snprintf.c */
1098/* VARARGS2 */
1099int snprintf(char *_RESTRICT_KYWD string, size_t n,
1100		const char *_RESTRICT_KYWD format, ...);
1101
1102/* sprintf.c */
1103/* VARARGS2 */
1104int sprintf(char *_RESTRICT_KYWD string,
1105		const char *_RESTRICT_KYWD format, ...);
1106
1107/* vfprintf.c */
1108/* VARARGS2 */
1109int vfprintf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD format,
1110		va_list);
1111
1112/* vprintf.c */
1113/* VARARGS1 */
1114int vprintf(const char *_RESTRICT_KYWD format, va_list);
1115
1116/* vsnprintf.c */
1117/* VARARGS2 */
1118int vsnprintf(char *_RESTRICT_KYWD string, size_t n,
1119		const char *_RESTRICT_KYWD format, va_list);
1120
1121/* vsprintf.c */
1122/* VARARGS2 */
1123int vsprintf(char *_RESTRICT_KYWD string, const char *_RESTRICT_KYWD format,
1124	va_list);
1125
1126/*
1127 * /usr/src/lib/libc/port/regex routines
1128 */
1129
1130/* regex.c */
1131char *regex(const char *regexp, const char *stringp, ...);
1132#ifdef __loc1
1133#undef __loc1
1134#endif
1135char *__loc1;
1136
1137/* regcmp.c */
1138char *regcmp(const char *regexp, ...);
1139#ifdef __i_size
1140#undef __i_size
1141#endif
1142int __i_size;
1143
1144/*
1145 * /usr/src/lib/libc/port/stdio routines
1146 */
1147
1148/* _filbuf.c */
1149int _filbuf(FILE *iop);
1150
1151/* _flsbuf.c */
1152int _flsbuf(int ch, FILE *iop);
1153
1154/* _wrtchk.c */
1155int _wrtchk(FILE *iop);
1156
1157/* clearerr.c */
1158void clearerr(FILE *iop);
1159
1160/* ctermid.c */
1161char *ctermid(char *s);
1162char *ctermid_r(char *s);
1163
1164/* cuserid.c */
1165char *cuserid(char *s);
1166
1167/* data.c */
1168
1169/* doscan.c */
1170int _doscan(FILE *iop, const char *fmt, va_list va_alist);
1171
1172/* fdopen.c */
1173FILE *fdopen(int fd, const char *type);
1174
1175/* feof.c */
1176int feof(FILE *iop);
1177
1178/* ferror.c */
1179int ferror(FILE *iop);
1180
1181/* fgetc.c */
1182int fgetc(FILE *iop);
1183
1184/* fgets.c */
1185char *fgets(char *_RESTRICT_KYWD buf, int size, FILE *_RESTRICT_KYWD iop);
1186
1187/* fileno.c */
1188int _fileno(FILE *iop);
1189
1190/* flush.c */
1191void _cleanup(void);
1192FILE *_findiop(void);
1193typedef unsigned char Uchar;
1194void _setbufend(FILE *iop, Uchar *end);
1195Uchar *_realbufend(FILE *iop);
1196void _bufsync(FILE *iop, Uchar *bufend);
1197int _xflsbuf(FILE *iop);
1198int fflush(FILE *iop);
1199int fclose(FILE *iop);
1200
1201/* fopen.c */
1202FILE *fopen(const char *_RESTRICT_KYWD name, const char *_RESTRICT_KYWD type);
1203FILE *freopen(const char *_RESTRICT_KYWD name, const char *_RESTRICT_KYWD type,
1204		FILE *_RESTRICT_KYWD iop);
1205
1206/* fpos.c */
1207int fgetpos(FILE *_RESTRICT_KYWD stream, fpos_t *_RESTRICT_KYWD pos);
1208int fsetpos(FILE *stream, const fpos_t *pos);
1209
1210/* fputc.c */
1211int fputc(int ch, FILE *iop);
1212
1213/* fputs.c */
1214int fputs(const char *_RESTRICT_KYWD ptr, FILE *_RESTRICT_KYWD iop);
1215
1216/* fread.c */
1217size_t fread(void *_RESTRICT_KYWD ptr, size_t size, size_t count,
1218	FILE *_RESTRICT_KYWD iop);
1219
1220/* fseek.c */
1221int fseek(FILE *iop, long offset, int ptrname);
1222
1223/* ftell.c */
1224long ftell(FILE *iop);
1225
1226/* fwrite.c */
1227size_t fwrite(const void *_RESTRICT_KYWD ptr1, size_t size, size_t count,
1228	FILE *_RESTRICT_KYWD iop);
1229
1230/* getc.c */
1231int getc(FILE *iop);
1232
1233/* getchar.c */
1234int getchar(void);
1235
1236/* getpass.c */
1237char *getpass(const char *prompt);
1238
1239/* getpass.c */
1240char *getpassphrase(const char *prompt);
1241
1242/* gets.c */
1243char *gets(char *buf);
1244
1245/* getw.c */
1246int getw(FILE *stream);
1247
1248/* popen.c */
1249FILE *popen(const char *cmd, const char *mode);
1250int pclose(FILE *ptr);
1251
1252/* putc.c */
1253int putc(int ch, FILE *iop);
1254
1255/* putchar.c */
1256int putchar(int ch);
1257
1258/* puts.c */
1259int puts(const char *ptr);
1260
1261/* putw.c */
1262int putw(int w, FILE *stream);
1263
1264/* rewind.c */
1265void rewind(FILE *iop);
1266
1267/* scanf.c */
1268/* VARARGS1 */
1269int scanf(const char *_RESTRICT_KYWD fmt, ...);
1270
1271/* VARARGS2 */
1272int fscanf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD fmt, ...);
1273
1274/* VARARGS2 */
1275int sscanf(const char *_RESTRICT_KYWD str, const char *_RESTRICT_KYWD fmt, ...);
1276
1277/* setbuf.c */
1278void setbuf(FILE *_RESTRICT_KYWD iop, char *_RESTRICT_KYWD abuf);
1279
1280/* setvbuf.c */
1281int setvbuf(FILE *_RESTRICT_KYWD iop, char *_RESTRICT_KYWD abuf, int type,
1282		size_t size);
1283
1284/* system.c */
1285int system(const char *s);
1286
1287/* tempnam.c */
1288char *tempnam(const char *dir, const char *pfx);
1289
1290/* tmpfile.c */
1291FILE *tmpfile(void);
1292
1293/* tmpnam.c */
1294char *tmpnam(char *s);
1295char *tmpnam_r(char *);
1296
1297/* ungetc.c */
1298int ungetc(int c, FILE *iop);
1299
1300/*
1301 * /usr/src/lib/libc/port/sys routines
1302 */
1303
1304/* exacctsys.c */
1305size_t getacct(idtype_t idtype, id_t id, void *buf, size_t bufsize);
1306int putacct(idtype_t idtype, id_t id, void *buf, size_t bufsize, int flags);
1307int wracct(idtype_t idtype, id_t id, int flags);
1308
1309/* execl.c */
1310/* VARARGS1 */
1311int execl(const char *name, const char *, ...);
1312
1313/* execle.c */
1314int execle(const char *, const char *file, ...);
1315
1316/* execv.c */
1317int execv(const char *file, char *const *argv);
1318
1319/* lockf.c */
1320int lockf(int fildes, int function, off_t size);
1321
1322/* meminfosys.c */
1323int meminfo(const uint64_t *inaddr, int addr_count, const uint_t *info_req,
1324	int info_count, uint64_t *outdata, uint_t *validity);
1325
1326/* msgsys.c */
1327int msgget(key_t key, int msgflg);
1328int msgctl(int msqid, int cmd, struct msqid_ds *buf);
1329ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
1330int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
1331
1332/* nfssys.c */
1333/*
1334int exportfs(char *dir, struct export *ep);
1335int nfs_getfh(char *path, fhandle_t *fhp);
1336int nfssvc(int fd);
1337*/
1338
1339/* psetsys.c */
1340int pset_create(psetid_t *npset);
1341int pset_destroy(psetid_t pset);
1342int pset_assign(psetid_t pset, processorid_t cpu, psetid_t *opset);
1343int pset_assign_forced(psetid_t pset, processorid_t cpu, psetid_t *opset);
1344int pset_info(psetid_t pset, int *type, u_int *numcpus, processorid_t *cpulist);
1345int pset_bind(psetid_t pset, idtype_t idtype, id_t id, psetid_t *opset);
1346
1347/* rctlsys.c */
1348int getrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
1349    int flags);
1350int setrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
1351    int flags);
1352/* (private functions) */
1353int setprojrctl(const char *name, rctlblk_t *new_rblk, size_t size, int flags);
1354int rctlctl(const char *, rctlblk_t *, int);
1355size_t rctllist(char *, size_t);
1356
1357
1358/* semsys.c */
1359int semctl(int semid, int semnum, int cmd, ...);
1360int semget(key_t key, int nsems, int semflg);
1361int semop(int semid, struct sembuf *sops, size_t nsops);
1362
1363/* shmsys.c */
1364void *shmat(int shmid, const void *shmaddr, int shmflg);
1365int shmctl(int shmid, int cmd, struct shmid_ds *buf);
1366#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4)
1367int shmdt(const void *);
1368#else
1369int shmdt(char *);
1370#endif /* defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4) */
1371int shmget(key_t key, size_t size, int shmflg);
1372
1373/* tasksys.c */
1374taskid_t settaskid(projid_t project, uint_t flags);
1375taskid_t gettaskid(void);
1376projid_t getprojid(void);
1377
1378/*
1379 * /usr/src/lib/libc/port/widec routines
1380 */
1381
1382/* fgetws.c */
1383wchar_t *fgetws(wchar_t *_RESTRICT_KYWD ptr, int  size,
1384	FILE *_RESTRICT_KYWD iop);
1385
1386/* fputwc.c */
1387wint_t fputwc(wint_t wc, FILE *iop);
1388wint_t putwc(wint_t wc, FILE *iop);
1389
1390/* fputws.c */
1391int fputws(const wchar_t *_RESTRICT_KYWD ptr, FILE *_RESTRICT_KYWD iop);
1392
1393/* getwchar.c */
1394wint_t getwchar(void);
1395
1396/* getwidth.c */
1397void getwidth(eucwidth_t *eucstruct);
1398
1399/* getws.c */
1400wchar_t *getws(wchar_t *ptr);
1401
1402/* iswctype.c */
1403int iswctype(wint_t wc, wctype_t charclass);
1404int iswalpha(wint_t c);
1405int iswupper(wint_t c);
1406int iswlower(wint_t c);
1407int iswdigit(wint_t c);
1408int iswxdigit(wint_t c);
1409int iswalnum(wint_t c);
1410int iswspace(wint_t c);
1411int iswpunct(wint_t c);
1412int iswprint(wint_t c);
1413int iswgraph(wint_t c);
1414int iswcntrl(wint_t c);
1415int isphonogram(wint_t c);
1416int isideogram(wint_t c);
1417int isenglish(wint_t c);
1418int isnumber(wint_t c);
1419int isspecial(wint_t c);
1420
1421/* libwcollate.c */
1422
1423/* putwchar.c */
1424wint_t putwchar(wint_t c);
1425
1426/* putws.c */
1427int putws(const wchar_t *ptr);
1428
1429/* scrwidth.c */
1430
1431/* strtows.c */
1432wchar_t *strtows(wchar_t *s1, char *s2);
1433char *wstostr(char *s1, wchar_t *s2);
1434
1435/* trwctype.c */
1436wint_t towupper(wint_t c);
1437wint_t towlower(wint_t c);
1438
1439/* ungetwc.c */
1440wint_t ungetwc(wint_t wc, FILE *iop);
1441
1442/* wcollate.c */
1443size_t wcsxfrm(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1444	size_t n);
1445int wcscoll(const wchar_t *s1, const wchar_t *s2);
1446
1447/* wcsftime.c */
1448#if !defined(__amd64) 		/* XX64 - fix me */
1449size_t wcsftime(wchar_t *wcs, size_t maxsize,
1450	const char *format, const struct tm *timeptr);
1451#endif	/* __amd64 */
1452
1453/* wcstring.c */
1454wint_t fgetwc(FILE *iop);
1455wint_t getwc(FILE *iop);
1456int wcwidth(wchar_t wc);
1457int wcswidth(const wchar_t *pwcs, size_t n);
1458
1459/* wcswcs.c */
1460wchar_t *wcswcs(const wchar_t *ws1, const wchar_t *ws2);
1461
1462/* wcsxfrm.c - empty file! */
1463
1464/* wcsxfrm.xpg4.c */
1465
1466/* wisprint.c */
1467int wisprint(wchar_t c);
1468
1469/* wscasecmp.c */
1470int wscasecmp(const wchar_t *s1, const wchar_t *s2);
1471
1472/* wscat.c */
1473wchar_t *wcscat(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2);
1474wchar_t *wscat(wchar_t *s1, const wchar_t *s2);
1475
1476/* wschr.c */
1477wchar_t *wcschr(const wchar_t *sp, wchar_t c);
1478wchar_t *wschr(const wchar_t *sp, wchar_t c);
1479
1480/* wscmp.c */
1481int wcscmp(const wchar_t *s1, const wchar_t *s2);
1482int wscmp(const wchar_t *s1, const wchar_t *s2);
1483
1484/* wscol.c */
1485int wscol(const wchar_t *s1);
1486
1487/* wscpy.c */
1488wchar_t *wcscpy(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2);
1489wchar_t *wscpy(wchar_t *s1, const wchar_t *s2);
1490
1491/* wscspn.c */
1492size_t wcscspn(const wchar_t *string, const wchar_t *charset);
1493size_t wscspn(const wchar_t *string, const wchar_t *charset);
1494
1495/* wsdup.c */
1496wchar_t *wsdup(const wchar_t *s1);
1497
1498/* wslen.c */
1499size_t wcslen(const wchar_t *s);
1500size_t wslen(const wchar_t *s);
1501
1502/* wsncasecmp.c */
1503int wsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1504
1505/* wsncat.c */
1506wchar_t *wcsncat(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1507	size_t n);
1508wchar_t *wsncat(wchar_t *s1, const wchar_t *s2, size_t n);
1509
1510/* wsncmp.c */
1511int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1512int wsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1513
1514/* wsncpy.c */
1515wchar_t *wcsncpy(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1516	size_t n);
1517wchar_t *wsncpy(wchar_t *s1, const wchar_t *s2, size_t n);
1518
1519/* wspbrk.c */
1520wchar_t *wcspbrk(const wchar_t *string, const wchar_t *brkset);
1521wchar_t *wspbrk(const wchar_t *string, const wchar_t *brkset);
1522
1523/* wsprintf.c */
1524int wsprintf(wchar_t *wstring, const char *format, ...);
1525
1526/* wsrchr.c */
1527wchar_t *wcsrchr(const wchar_t *sp, wchar_t c);
1528wchar_t *wsrchr(const wchar_t *sp, wchar_t c);
1529
1530/* wsscanf.c */
1531int wsscanf(wchar_t *s, const char *format, ...);
1532
1533/* wssize.c */
1534
1535/* wsspn.c */
1536size_t wcsspn(const wchar_t *string, const wchar_t *charset);
1537size_t wsspn(const wchar_t *string, const wchar_t *charset);
1538
1539/* wstod.c */
1540double wcstod(const wchar_t *_RESTRICT_KYWD cp, wchar_t **_RESTRICT_KYWD ptr);
1541float wcstof(const wchar_t *_RESTRICT_KYWD cp, wchar_t **_RESTRICT_KYWD ptr);
1542long double wcstold(const wchar_t *_RESTRICT_KYWD cp,
1543	wchar_t **_RESTRICT_KYWD ptr);
1544double wstod(const wchar_t *cp, wchar_t **ptr);
1545
1546/* wstok.c */
1547#if !defined(__amd64) 		/* XX64 - fix me */
1548wchar_t *wcstok(wchar_t *string, const wchar_t *sepset);
1549wchar_t *wstok(wchar_t *string, const wchar_t *sepset);
1550#endif	/* __amd64 */
1551
1552/* wcstol.c */
1553long wcstol(const wchar_t *_RESTRICT_KYWD str, wchar_t **_RESTRICT_KYWD ptr,
1554	int base);
1555long long wcstoll(const wchar_t *_RESTRICT_KYWD str,
1556	wchar_t **_RESTRICT_KYWD ptr, int base);
1557
1558/* wcstoul.c */
1559unsigned long wcstoul(const wchar_t *_RESTRICT_KYWD str,
1560	wchar_t **_RESTRICT_KYWD ptr, int base);
1561unsigned long long wcstoull(const wchar_t *_RESTRICT_KYWD str,
1562	wchar_t **_RESTRICT_KYWD ptr, int base);
1563
1564/* wcstoimax.c */
1565intmax_t wcstoimax(const wchar_t *_RESTRICT_KYWD nptr,
1566	wchar_t **_RESTRICT_KYWD endptr, int base);
1567uintmax_t wcstoumax(const wchar_t *_RESTRICT_KYWD nptr,
1568	wchar_t **_RESTRICT_KYWD endptr, int base);
1569
1570/* wstol.c */
1571long wstol(const wchar_t *str, wchar_t **ptr, int base);
1572
1573/* wstoll.c */
1574long long wstoll(const wchar_t *str, wchar_t **ptr, int base);
1575long long watoll(const wchar_t *p);
1576
1577/* wsxfrm.c */
1578size_t wsxfrm(wchar_t *s1, const wchar_t *s2, size_t n);
1579int wscoll(const wchar_t *s1, const wchar_t *s2);
1580
1581/*
1582 * /usr/src/lib/libc/port/gen/event_port.c
1583 */
1584int port_dispatch(int port, int flags, int source, int events, uintptr_t object,
1585    void *user);
1586
1587/*
1588 * /usr/src/lib/libc/$MACH/gen routines
1589 */
1590
1591/* alloca.s */
1592
1593void *__builtin_alloca(size_t);
1594
1595/*
1596 * modctl(int arg, ...) and utssys(...) are not available from a header
1597 * file, but our utilities which make use of it should be able to be
1598 * lint clean.
1599 */
1600int modctl(int arg, ...);
1601int utssys(void *buf, int arg, int type, void *outbp);
1602
1603
1604typedef float single;
1605typedef unsigned extended[3];
1606typedef long double quadruple;
1607typedef unsigned fp_exception_field_type;
1608
1609typedef char decimal_string[512];
1610
1611enum fp_class_type {
1612	fp_zero	 = 0,
1613	fp_subnormal    = 1,
1614	fp_normal	= 2,
1615	fp_infinity	= 3,
1616	fp_quiet	= 4,
1617	fp_signaling    = 5
1618};
1619
1620enum fp_direction_type {
1621	fp_nearest	= 0,
1622	fp_tozero	= 1,
1623	fp_positive	= 2,
1624	fp_negative	= 3
1625};
1626
1627typedef struct {
1628	enum fp_class_type fpclass;
1629	int sign;
1630	int exponent;
1631	decimal_string ds;
1632	int more;
1633	int ndigits;
1634} decimal_record;
1635
1636enum decimal_form {
1637	fixed_form,
1638	floating_form
1639};
1640
1641typedef struct {
1642	enum fp_direction_type rd;
1643	enum decimal_form df;
1644	int ndigits;
1645} decimal_mode;
1646
1647enum decimal_string_form {
1648	invalid_form,
1649	whitespace_form,
1650	fixed_int_form,
1651	fixed_intdot_form,
1652	fixed_dotfrac_form,
1653	fixed_intdotfrac_form,
1654	floating_int_form,
1655	floating_intdot_form,
1656	floating_dotfrac_form,
1657	floating_intdotfrac_form,
1658	inf_form,
1659	infinity_form,
1660	nan_form,
1661	nanstring_form
1662};
1663
1664typedef int sigfpe_code_type;
1665
1666typedef void (*sigfpe_handler_type)();
1667
1668extern sigfpe_handler_type sigfpe(sigfpe_code_type, sigfpe_handler_type);
1669
1670extern void single_to_decimal(single *, decimal_mode *, decimal_record *,
1671				fp_exception_field_type *);
1672
1673extern void double_to_decimal(double *, decimal_mode *, decimal_record *,
1674				fp_exception_field_type *);
1675extern void extended_to_decimal(extended *, decimal_mode *,
1676				decimal_record *, fp_exception_field_type *);
1677extern void quadruple_to_decimal(quadruple *, decimal_mode *,
1678				decimal_record *, fp_exception_field_type *);
1679extern void decimal_to_single(single *, decimal_mode *, decimal_record *,
1680				fp_exception_field_type *);
1681extern void decimal_to_double(double *, decimal_mode *, decimal_record *,
1682				fp_exception_field_type *);
1683extern void decimal_to_extended(extended *, decimal_mode *,
1684				decimal_record *, fp_exception_field_type *);
1685extern void decimal_to_quadruple(quadruple *, decimal_mode *,
1686				decimal_record *, fp_exception_field_type *);
1687extern void string_to_decimal(char **, int, int, decimal_record *,
1688				enum decimal_string_form *, char **);
1689extern void func_to_decimal(char **, int, int, decimal_record *,
1690				enum decimal_string_form *, char **,
1691				int (*)(void), int *, int (*)(int));
1692extern void file_to_decimal(char **, int, int, decimal_record *,
1693				enum decimal_string_form *, char **,
1694				FILE *, int *);
1695extern char *seconvert(single *, int, int *, int *, char *);
1696extern char *sfconvert(single *, int, int *, int *, char *);
1697extern char *sgconvert(single *, int, int, char *);
1698extern char *econvert(double, int, int *, int *, char *);
1699extern char *fconvert(double, int, int *, int *, char *);
1700extern char *gconvert(double, int, int, char *);
1701extern char *qeconvert(quadruple *, int, int *, int *, char *);
1702extern char *qfconvert(quadruple *, int, int *, int *, char *);
1703extern char *qgconvert(quadruple *, int, int, char *);
1704
1705extern void __assert(const char *, const char *, int);
1706
1707extern int setjmp(jmp_buf);
1708extern void longjmp(jmp_buf, int);
1709extern int sigsetjmp(sigjmp_buf, int);
1710extern void siglongjmp(sigjmp_buf, int);
1711
1712int uname(struct utsname *);
1713int _uname(struct utsname *);
1714
1715int errno;
1716int *___errno()
1717{ return (&errno); }
1718
1719extern int getloadavg(double [], int);
1720
1721extern long pcsample(uintptr_t [], long);
1722
1723int fstat(int, struct stat *);
1724int stat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
1725int lstat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
1726int mknod(const char *, mode_t, dev_t);
1727
1728extern int __init_daemon_priv(int, uid_t uid, gid_t gid, ...);
1729extern void __fini_daemon_priv(const char *, ...);
1730extern int __init_suid_priv(int, ...);
1731extern int __priv_bracket(priv_op_t);
1732extern void __priv_relinquish(void);
1733extern const char * __priv_getsetbynum(const void *, int);
1734extern char * __priv_set_to_str(void *, const priv_set_t *, char, int);
1735
1736/* private interface to get the groups list for a certain user */
1737int _getgroupsbymember(const char *, gid_t[], int, int);
1738
1739/* private interface for use only by java */
1740volatile sc_shared_t *volatile *_thr_schedctl(void);
1741
1742/* private interface to unmount all autofs mounts */
1743int _autofssys(enum autofssys_op, void *);
1744
1745/* label.c */
1746extern int is_system_labeled(void);
1747
1748/* until TOG resolves the name, keep this private */
1749int __accessat(int, const char *, int);
1750
1751extern int uconv_u16tou32(const uint16_t *, size_t *, uint32_t *, size_t *,
1752	int);
1753extern int uconv_u16tou8(const uint16_t *, size_t *, uchar_t *, size_t *, int);
1754extern int uconv_u32tou16(const uint32_t *, size_t *, uint16_t *, size_t *,
1755	int);
1756extern int uconv_u32tou8(const uint32_t *, size_t *, uchar_t *, size_t *, int);
1757extern int uconv_u8tou16(const uchar_t *, size_t *, uint16_t *, size_t *, int);
1758extern int uconv_u8tou32(const uchar_t *, size_t *, uint32_t *, size_t *, int);
1759extern int u8_validate(char *, size_t, char **, int, int *);
1760extern int u8_strcmp(const char *, const char *, size_t, int, size_t, int *);
1761extern size_t u8_textprep_str(char *, size_t *, char *, size_t *, int, size_t,
1762	int *);
1763