xref: /titanic_41/usr/src/lib/libc/port/llib-lc (revision 75ce41a57ff334bd8fe2cb9ed51eea835892f944)
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 2009 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27/* LINTLIBRARY */
28/* PROTOLIB1 */
29
30#include <aio.h>
31#include <alloca.h>
32#include <attr.h>
33#include <atomic.h>
34#include <ctype.h>
35#include <deflt.h>
36#include <dirent.h>
37#include <dlfcn.h>
38#include <door.h>
39#include <err.h>
40#include <sys/errno.h>
41#include <euc.h>
42#include <fcntl.h>
43#include <float.h>
44#include <fmtmsg.h>
45#include <fnmatch.h>
46#include <ftw.h>
47#include <getwidth.h>
48#include <grp.h>
49#include <iconv.h>
50#include <langinfo.h>
51#include <libgen.h>
52#include <libw.h>
53#include <locale.h>
54#include <memory.h>
55#include <mon.h>
56#include <mqueue.h>
57#include <nan.h>
58#include <ndbm.h>
59#include <limits.h>
60#include <nl_types.h>
61#include <project.h>
62#include <priv.h>
63#include <pwd.h>
64#include <rctl.h>
65#include <regex.h>
66#include <rpcsvc/ypclnt.h>
67#include <sched.h>
68#include <search.h>
69#include <semaphore.h>
70#include <setjmp.h>
71#include <shadow.h>
72#include <siginfo.h>
73#include <signal.h>
74#include <stdarg.h>
75#include <ucred.h>
76#include <sys/ucred.h>
77#include <unistd.h>
78#include <ulimit.h>
79#include <utime.h>
80#include <stddef.h>
81#include <stdio.h>
82#include <stdlib.h>
83#include <string.h>
84#include <stropts.h>
85#include <synch.h>
86#include <sys/acctctl.h>
87#include <sys/acl.h>
88#include <sys/asynch.h>
89#include <sys/byteorder.h>
90#include <sys/cladm.h>
91#include <sys/corectl.h>
92#include <sys/dl.h>
93#include <sys/exacct.h>
94#include <sys/fcntl.h>
95#include <sys/file.h>
96#include <sys/fs/namenode.h>
97#include <sys/instance.h>
98#include <sys/ipc.h>
99#include <sys/lwp.h>
100#include <sys/mkdev.h>
101#include <sys/mman.h>
102#include <sys/mnttab.h>
103#include <sys/mount.h>
104#include <sys/msg.h>
105#include <sys/param.h>
106#include <sys/poll.h>
107#include <sys/priocntl.h>
108#include <sys/procset.h>
109#include <sys/processor.h>
110#include <sys/pset.h>
111#include <sys/rctl_impl.h>
112#include <sys/sem.h>
113#include <sys/shm.h>
114#include <sys/sid.h>
115#include <sys/signal.h>
116#include <sys/stat.h>
117#include <sys/statvfs.h>
118#include <sys/strlog.h>
119#include <sys/stropts.h>
120#include <sys/syscall.h>
121#include <sys/sysconfig.h>
122#include <sys/syslog.h>
123#include <sys/systeminfo.h>
124#include <sys/task.h>
125#include <sys/termio.h>
126#include <sys/termios.h>
127#include <sys/u8_textprep.h>
128#include <sys/time.h>
129#include <sys/timeb.h>
130#include <sys/times.h>
131#include <sys/types.h>
132#include <sys/uadmin.h>
133#include <sys/utsname.h>
134#include <sys/vfstab.h>
135#include <sys/sendfile.h>
136#include <sys/zone.h>
137#include <termio.h>
138#include <time.h>
139#include <tzfile.h>
140#include <ucontext.h>
141#include <utmpx.h>
142#include <values.h>
143#include <wait.h>
144#include <wchar.h>
145#include <wctype.h>
146#include <widec.h>
147#include <wordexp.h>
148#include <thread.h>
149#include <pthread.h>
150#include <schedctl.h>
151#include <zone.h>
152#include <port.h>
153#include <spawn.h>
154#include <inttypes.h>
155#include <getopt.h>
156#include <stdio_ext.h>
157#if defined(__i386)
158#include <sys/sysi86.h>
159#endif
160#if defined(__amd64)
161#include <stack_unwind.h>
162#endif
163
164/*
165 * This really comes from the crt*.s startup modules.
166 */
167char **environ;
168
169/*
170 * POSIX versions of standard libc routines; these aren't extracted
171 * from the headers above since we cannot #define _POSIX_C_SOURCE.
172 */
173int __posix_readdir_r(DIR * _RESTRICT_KYWD, struct dirent * _RESTRICT_KYWD,
174    struct dirent ** _RESTRICT_KYWD);
175int __posix_getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
176int __posix_getgrnam_r(const char *, struct group *, char *, size_t,
177    struct group **);
178int __posix_getpwuid_r(uid_t, struct passwd *, char *, size_t,
179    struct passwd **);
180int __posix_getpwnam_r(const char *, struct passwd *, char *, size_t,
181    struct passwd **);
182int __posix_sigwait(const sigset_t * _RESTRICT_KYWD, int * _RESTRICT_KYWD);
183char *__posix_asctime_r(const struct tm *_RESTRICT_KYWD, char *_RESTRICT_KYWD);
184char *__posix_ctime_r(const time_t *, char *);
185int __posix_ttyname_r(int, char *, size_t);
186int __posix_getlogin_r(char *, int);
187
188/*
189 * XPG4 versions of standard libc routines; these aren't extracted
190 * from the headers above since we cannot #define _XPG4_2.
191 */
192int __xpg4_putmsg(int, const struct strbuf *, const struct strbuf *, int);
193int __xpg4_putpmsg(int, const struct strbuf *, const struct strbuf *, int, int);
194
195/*
196 * These aren't extracted from the headers above because:
197 * - We cannot #define _STRPTIME_DONTZERO
198 * - We cannot #define _XPG5
199 */
200char *__strptime_dontzero(const char *, const char *, struct tm *);
201long __sysconf_xpg5(int);
202wchar_t *__wcstok_xpg5(wchar_t *_RESTRICT_KYWD,
203	const wchar_t *_RESTRICT_KYWD, wchar_t **_RESTRICT_KYWD);
204size_t __wcsftime_xpg5(wchar_t *_RESTRICT_KYWD, size_t,
205	const wchar_t *_RESTRICT_KYWD, const struct tm *_RESTRICT_KYWD);
206wint_t __fgetwc_xpg5(__FILE *);
207wint_t __getwc_xpg5(__FILE *);
208wint_t __getwchar_xpg5(void);
209wint_t __fputwc_xpg5(wint_t, __FILE *);
210wint_t __putwc_xpg5(wint_t, __FILE *);
211wint_t __putwchar_xpg5(wint_t);
212wchar_t *__fgetws_xpg5(wchar_t *_RESTRICT_KYWD, int, __FILE *_RESTRICT_KYWD);
213int __fputws_xpg5(const wchar_t *_RESTRICT_KYWD, __FILE *_RESTRICT_KYWD);
214wint_t __ungetwc_xpg5(wint_t, __FILE *);
215
216/*
217 * /usr/src/lib/libc/port/gen routines
218 */
219
220/* _ctype.c */
221
222/* _loc_data.c */
223
224/* _locale.c */
225
226/* _set_tab.c */
227int _set_tab(const char *loc, int cat);
228
229/* _xftw.c */
230int _xftw(int ver, const char *path, int (*fn)(), int depth);
231
232/* a64l.c */
233long a64l(const char *);
234
235/* abort.c */
236void abort(void);
237
238/* abs.c */
239int abs(int arg);
240long labs(long int arg);
241
242/* assert.c */
243void _assert(const char *assertion, const char *filename, int line_num);
244void __assert_c99(const char *assertion, const char *filename, int line_num,
245    const char *funcname);
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/* strsep.c */
914char *strsep(char **stringp, const char *delim);
915
916/* strspn.c */
917size_t strspn(const char *string, const char *charset);
918
919/* strstr.c */
920char *strstr(const char *as1, const char *as2);
921
922/* strtod.c */
923double strtod(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
924float strtof(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
925long double strtold(const char *_RESTRICT_KYWD cp, char **_RESTRICT_KYWD ptr);
926
927/* strtoimax.c */
928intmax_t strtoimax(const char *_RESTRICT_KYWD nptr,
929	char **_RESTRICT_KYWD endptr, int base);
930
931/* strtok.c */
932char *strtok(char *_RESTRICT_KYWD string, const char *_RESTRICT_KYWD sepset);
933char *strtok_r(char *_RESTRICT_KYWD, const char *_RESTRICT_KYWD,
934	char **_RESTRICT_KYWD);
935
936/* strtol.c */
937long strtol(const char *_RESTRICT_KYWD str, char **_RESTRICT_KYWD nptr,
938	int base);
939
940/* strtoul.c */
941unsigned long strtoul(const char *_RESTRICT_KYWD str,
942	char **_RESTRICT_KYWD nptr, int base);
943
944/* strtoumax.c */
945uintmax_t strtoumax(const char *_RESTRICT_KYWD nptr,
946		    char **_RESTRICT_KYWD endptr, int base);
947
948/* strxfrm.c */
949size_t strxfrm(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2,
950	size_t n);
951int strcoll(const char *s1, const char *s2);
952
953/* swab.c */
954void swab(const char *_RESTRICT_KYWD from, char *_RESTRICT_KYWD to, ssize_t n);
955
956/* swapctl.c */
957int swapctl(int cmd, void *arg);
958
959/* sysconf.c */
960long sysconf(int name);
961
962/* syslog.c */
963/* VARARGS2 */
964void syslog(int pri, const char *fmt, ...);
965void vsyslog(int pri, const char *fmt, va_list ap);
966void openlog(const char *ident, int logstat, int logfac);
967void closelog(void);
968int setlogmask(int pmask);
969
970/* tcdrain.c */
971int tcdrain(int fildes);
972
973/* tcflow.c */
974int tcflow(int fildes, int action);
975
976/* tcflush.c */
977int tcflush(int fildes, int queue_selector);
978
979/* tcgetattr.c */
980int tcgetattr(int fildes, struct termios *termios_p);
981
982/* tcgetpgrp.c */
983pid_t tcgetpgrp(int fd);
984
985/* tcgetsid.c */
986pid_t tcgetsid(int fd);
987
988/* tcsendbreak.c */
989int tcsendbreak(int fildes, int duration);
990
991/* tcsetattr.c */
992int tcsetattr(int fildes, int optional_actions,
993	const struct termios *termios_p);
994
995/* tcsetpgrp.c */
996int tcsetpgrp(int fd, pid_t pgrp);
997
998/* tell.c */
999long tell(int f);
1000
1001/* telldir.c */
1002long telldir(DIR *dirp);
1003
1004/* tfind.c */
1005void *tfind(const void *ky, void *const *rtp, int (*compar)());
1006
1007/* time_comm.c */
1008struct tm *localtime(const time_t *timep);
1009struct tm *localtime_r(const time_t *_RESTRICT_KYWD, struct tm *_RESTRICT_KYWD);
1010struct tm *gmtime(const time_t *clock);
1011struct tm *gmtime_r(const time_t *_RESTRICT_KYWD, struct tm *_RESTRICT_KYWD);
1012double difftime(time_t time1, time_t time0);
1013time_t mktime(struct tm *timeptr);
1014void _ltzset(time_t tim);
1015void tzset(void);
1016
1017/* time_data.c */
1018
1019/* time_gdata.c */
1020
1021/* tolower.c */
1022int tolower(int c);
1023
1024/* toupper.c */
1025int toupper(int c);
1026
1027/* truncate.c */
1028int ftruncate(int fildes, off_t len);
1029int truncate(const char *path, off_t len);
1030
1031/* tsearch.c */
1032void *tsearch(const void *ky, void **rtp, int (*compar)());
1033void *tdelete(const void *ky, void **rtp, int (*compar)());
1034void twalk(const void *rt, void (*action)());
1035
1036/* ttyname.c */
1037char *ttyname(int f);
1038char *_ttyname_dev(dev_t rdev, char *buffer, size_t buflen);
1039char *ttyname_r(int, char *, int);
1040
1041/* ttyslot.c */
1042int ttyslot(void);
1043
1044/* ualarm.c */
1045unsigned ualarm(unsigned usecs, unsigned reload);
1046
1047/* ulimit.c */
1048/* VARARGS1 */
1049long ulimit(int cmd, ...);
1050
1051/* scalls.c */
1052int usleep(unsigned n);
1053
1054/* valloc.c */
1055void *valloc(size_t size);
1056
1057/* waitpid.c */
1058pid_t wait(int *stat_loc);
1059pid_t waitpid(pid_t pid, int *stat_loc, int options);
1060pid_t wait3(int *status, int options, struct rusage *rp);
1061pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage);
1062
1063/* wcstombs.c */
1064size_t wcstombs(char *_RESTRICT_KYWD s, const wchar_t *_RESTRICT_KYWD pwcs,
1065	size_t n);
1066
1067/* wctomb.c */
1068int wctomb(char *s, wchar_t wchar);
1069
1070/* wdata.c */
1071
1072/* wisprint.c */
1073int wisprint(wchar_t c);
1074
1075/* xgetwidth.c */
1076void _xgetwidth(void);
1077
1078/*
1079 * /usr/src/lib/libc/port/intl routines
1080 */
1081
1082/* gettext.c */
1083char *bindtextdomain(const char *domain, const char *binding);
1084char *dcgettext(const char *domain, const char *msg_id, const int category);
1085char *dgettext(const char *domain, const char *msg_id);
1086char *gettext(const char *msg_id);
1087char *textdomain(const char *domain);
1088
1089/*
1090 * /usr/src/lib/libc/port/print routines
1091 */
1092
1093/* fprintf.c */
1094/* VARARGS2 */
1095int fprintf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD format, ...);
1096
1097/* printf.c */
1098/* VARARGS1 */
1099int printf(const char *_RESTRICT_KYWD format, ...);
1100
1101/* snprintf.c */
1102/* VARARGS2 */
1103int snprintf(char *_RESTRICT_KYWD string, size_t n,
1104		const char *_RESTRICT_KYWD format, ...);
1105
1106/* sprintf.c */
1107/* VARARGS2 */
1108int sprintf(char *_RESTRICT_KYWD string,
1109		const char *_RESTRICT_KYWD format, ...);
1110
1111/* vfprintf.c */
1112/* VARARGS2 */
1113int vfprintf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD format,
1114		va_list);
1115
1116/* vprintf.c */
1117/* VARARGS1 */
1118int vprintf(const char *_RESTRICT_KYWD format, va_list);
1119
1120/* vsnprintf.c */
1121/* VARARGS2 */
1122int vsnprintf(char *_RESTRICT_KYWD string, size_t n,
1123		const char *_RESTRICT_KYWD format, va_list);
1124
1125/* vsprintf.c */
1126/* VARARGS2 */
1127int vsprintf(char *_RESTRICT_KYWD string, const char *_RESTRICT_KYWD format,
1128	va_list);
1129
1130/*
1131 * /usr/src/lib/libc/port/regex routines
1132 */
1133
1134/* regex.c */
1135char *regex(const char *regexp, const char *stringp, ...);
1136#ifdef __loc1
1137#undef __loc1
1138#endif
1139char *__loc1;
1140
1141/* regcmp.c */
1142char *regcmp(const char *regexp, ...);
1143#ifdef __i_size
1144#undef __i_size
1145#endif
1146int __i_size;
1147
1148/*
1149 * /usr/src/lib/libc/port/stdio routines
1150 */
1151
1152/* _filbuf.c */
1153int _filbuf(FILE *iop);
1154
1155/* _flsbuf.c */
1156int _flsbuf(int ch, FILE *iop);
1157
1158/* _wrtchk.c */
1159int _wrtchk(FILE *iop);
1160
1161/* clearerr.c */
1162void clearerr(FILE *iop);
1163
1164/* ctermid.c */
1165char *ctermid(char *s);
1166char *ctermid_r(char *s);
1167
1168/* cuserid.c */
1169char *cuserid(char *s);
1170
1171/* data.c */
1172
1173/* doscan.c */
1174int _doscan(FILE *iop, const char *fmt, va_list va_alist);
1175
1176/* fdopen.c */
1177FILE *fdopen(int fd, const char *type);
1178
1179/* feof.c */
1180int feof(FILE *iop);
1181
1182/* ferror.c */
1183int ferror(FILE *iop);
1184
1185/* fgetc.c */
1186int fgetc(FILE *iop);
1187
1188/* fgets.c */
1189char *fgets(char *_RESTRICT_KYWD buf, int size, FILE *_RESTRICT_KYWD iop);
1190
1191/* fileno.c */
1192int _fileno(FILE *iop);
1193
1194/* flush.c */
1195void _cleanup(void);
1196FILE *_findiop(void);
1197typedef unsigned char Uchar;
1198void _setbufend(FILE *iop, Uchar *end);
1199Uchar *_realbufend(FILE *iop);
1200void _bufsync(FILE *iop, Uchar *bufend);
1201int _xflsbuf(FILE *iop);
1202int fflush(FILE *iop);
1203int fclose(FILE *iop);
1204
1205/* fopen.c */
1206FILE *fopen(const char *_RESTRICT_KYWD name, const char *_RESTRICT_KYWD type);
1207FILE *freopen(const char *_RESTRICT_KYWD name, const char *_RESTRICT_KYWD type,
1208		FILE *_RESTRICT_KYWD iop);
1209
1210/* fpos.c */
1211int fgetpos(FILE *_RESTRICT_KYWD stream, fpos_t *_RESTRICT_KYWD pos);
1212int fsetpos(FILE *stream, const fpos_t *pos);
1213
1214/* fputc.c */
1215int fputc(int ch, FILE *iop);
1216
1217/* fputs.c */
1218int fputs(const char *_RESTRICT_KYWD ptr, FILE *_RESTRICT_KYWD iop);
1219
1220/* fread.c */
1221size_t fread(void *_RESTRICT_KYWD ptr, size_t size, size_t count,
1222	FILE *_RESTRICT_KYWD iop);
1223
1224/* fseek.c */
1225int fseek(FILE *iop, long offset, int ptrname);
1226
1227/* ftell.c */
1228long ftell(FILE *iop);
1229
1230/* fwrite.c */
1231size_t fwrite(const void *_RESTRICT_KYWD ptr1, size_t size, size_t count,
1232	FILE *_RESTRICT_KYWD iop);
1233
1234/* getc.c */
1235int getc(FILE *iop);
1236
1237/* getchar.c */
1238int getchar(void);
1239
1240/* getpass.c */
1241char *getpass(const char *prompt);
1242
1243/* getpass.c */
1244char *getpassphrase(const char *prompt);
1245
1246/* gets.c */
1247char *gets(char *buf);
1248
1249/* getw.c */
1250int getw(FILE *stream);
1251
1252/* popen.c */
1253FILE *popen(const char *cmd, const char *mode);
1254int pclose(FILE *ptr);
1255
1256/* putc.c */
1257int putc(int ch, FILE *iop);
1258
1259/* putchar.c */
1260int putchar(int ch);
1261
1262/* puts.c */
1263int puts(const char *ptr);
1264
1265/* putw.c */
1266int putw(int w, FILE *stream);
1267
1268/* rewind.c */
1269void rewind(FILE *iop);
1270
1271/* scanf.c */
1272/* VARARGS1 */
1273int scanf(const char *_RESTRICT_KYWD fmt, ...);
1274
1275/* VARARGS2 */
1276int fscanf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD fmt, ...);
1277
1278/* VARARGS2 */
1279int sscanf(const char *_RESTRICT_KYWD str, const char *_RESTRICT_KYWD fmt, ...);
1280
1281/* setbuf.c */
1282void setbuf(FILE *_RESTRICT_KYWD iop, char *_RESTRICT_KYWD abuf);
1283
1284/* setvbuf.c */
1285int setvbuf(FILE *_RESTRICT_KYWD iop, char *_RESTRICT_KYWD abuf, int type,
1286		size_t size);
1287
1288/* system.c */
1289int system(const char *s);
1290
1291/* tempnam.c */
1292char *tempnam(const char *dir, const char *pfx);
1293
1294/* tmpfile.c */
1295FILE *tmpfile(void);
1296
1297/* tmpnam.c */
1298char *tmpnam(char *s);
1299char *tmpnam_r(char *);
1300
1301/* ungetc.c */
1302int ungetc(int c, FILE *iop);
1303
1304/*
1305 * /usr/src/lib/libc/port/sys routines
1306 */
1307
1308/* exacctsys.c */
1309size_t getacct(idtype_t idtype, id_t id, void *buf, size_t bufsize);
1310int putacct(idtype_t idtype, id_t id, void *buf, size_t bufsize, int flags);
1311int wracct(idtype_t idtype, id_t id, int flags);
1312
1313/* execl.c */
1314/* VARARGS1 */
1315int execl(const char *name, const char *, ...);
1316
1317/* execle.c */
1318int execle(const char *, const char *file, ...);
1319
1320/* execv.c */
1321int execv(const char *file, char *const *argv);
1322
1323/* lockf.c */
1324int lockf(int fildes, int function, off_t size);
1325
1326/* meminfosys.c */
1327int meminfo(const uint64_t *inaddr, int addr_count, const uint_t *info_req,
1328	int info_count, uint64_t *outdata, uint_t *validity);
1329
1330/* msgsys.c */
1331int msgget(key_t key, int msgflg);
1332int msgctl(int msqid, int cmd, struct msqid_ds *buf);
1333ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
1334int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
1335
1336/* nfssys.c */
1337/*
1338int exportfs(char *dir, struct export *ep);
1339int nfs_getfh(char *path, fhandle_t *fhp);
1340int nfssvc(int fd);
1341*/
1342
1343/* psetsys.c */
1344int pset_create(psetid_t *npset);
1345int pset_destroy(psetid_t pset);
1346int pset_assign(psetid_t pset, processorid_t cpu, psetid_t *opset);
1347int pset_assign_forced(psetid_t pset, processorid_t cpu, psetid_t *opset);
1348int pset_info(psetid_t pset, int *type, u_int *numcpus, processorid_t *cpulist);
1349int pset_bind(psetid_t pset, idtype_t idtype, id_t id, psetid_t *opset);
1350int pset_bind_lwp(psetid_t pset, id_t id, pid_t, psetid_t *opset);
1351
1352
1353/* rctlsys.c */
1354int getrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
1355    int flags);
1356int setrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
1357    int flags);
1358/* (private functions) */
1359int setprojrctl(const char *name, rctlblk_t *new_rblk, size_t size, int flags);
1360int rctlctl(const char *, rctlblk_t *, int);
1361size_t rctllist(char *, size_t);
1362
1363
1364/* semsys.c */
1365int semctl(int semid, int semnum, int cmd, ...);
1366int semget(key_t key, int nsems, int semflg);
1367int semop(int semid, struct sembuf *sops, size_t nsops);
1368
1369/* shmsys.c */
1370void *shmat(int shmid, const void *shmaddr, int shmflg);
1371int shmctl(int shmid, int cmd, struct shmid_ds *buf);
1372#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4)
1373int shmdt(const void *);
1374#else
1375int shmdt(char *);
1376#endif /* defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4) */
1377int shmget(key_t key, size_t size, int shmflg);
1378
1379/* tasksys.c */
1380taskid_t settaskid(projid_t project, uint_t flags);
1381taskid_t gettaskid(void);
1382projid_t getprojid(void);
1383
1384/*
1385 * /usr/src/lib/libc/port/widec routines
1386 */
1387
1388/* fgetws.c */
1389wchar_t *fgetws(wchar_t *_RESTRICT_KYWD ptr, int  size,
1390	FILE *_RESTRICT_KYWD iop);
1391
1392/* fputwc.c */
1393wint_t fputwc(wint_t wc, FILE *iop);
1394wint_t putwc(wint_t wc, FILE *iop);
1395
1396/* fputws.c */
1397int fputws(const wchar_t *_RESTRICT_KYWD ptr, FILE *_RESTRICT_KYWD iop);
1398
1399/* getwchar.c */
1400wint_t getwchar(void);
1401
1402/* getwidth.c */
1403void getwidth(eucwidth_t *eucstruct);
1404
1405/* getws.c */
1406wchar_t *getws(wchar_t *ptr);
1407
1408/* iswctype.c */
1409int iswctype(wint_t wc, wctype_t charclass);
1410int iswalpha(wint_t c);
1411int iswupper(wint_t c);
1412int iswlower(wint_t c);
1413int iswdigit(wint_t c);
1414int iswxdigit(wint_t c);
1415int iswalnum(wint_t c);
1416int iswspace(wint_t c);
1417int iswpunct(wint_t c);
1418int iswprint(wint_t c);
1419int iswgraph(wint_t c);
1420int iswcntrl(wint_t c);
1421int isphonogram(wint_t c);
1422int isideogram(wint_t c);
1423int isenglish(wint_t c);
1424int isnumber(wint_t c);
1425int isspecial(wint_t c);
1426
1427/* libwcollate.c */
1428
1429/* putwchar.c */
1430wint_t putwchar(wint_t c);
1431
1432/* putws.c */
1433int putws(const wchar_t *ptr);
1434
1435/* scrwidth.c */
1436
1437/* strtows.c */
1438wchar_t *strtows(wchar_t *s1, char *s2);
1439char *wstostr(char *s1, wchar_t *s2);
1440
1441/* trwctype.c */
1442wint_t towupper(wint_t c);
1443wint_t towlower(wint_t c);
1444
1445/* ungetwc.c */
1446wint_t ungetwc(wint_t wc, FILE *iop);
1447
1448/* wcollate.c */
1449size_t wcsxfrm(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1450	size_t n);
1451int wcscoll(const wchar_t *s1, const wchar_t *s2);
1452
1453/* wcsftime.c */
1454#if !defined(__amd64) 		/* XX64 - fix me */
1455size_t wcsftime(wchar_t *wcs, size_t maxsize,
1456	const char *format, const struct tm *timeptr);
1457#endif	/* __amd64 */
1458
1459/* wcstring.c */
1460wint_t fgetwc(FILE *iop);
1461wint_t getwc(FILE *iop);
1462int wcwidth(wchar_t wc);
1463int wcswidth(const wchar_t *pwcs, size_t n);
1464
1465/* wcswcs.c */
1466wchar_t *wcswcs(const wchar_t *ws1, const wchar_t *ws2);
1467
1468/* wcsxfrm.c - empty file! */
1469
1470/* wcsxfrm.xpg4.c */
1471
1472/* wisprint.c */
1473int wisprint(wchar_t c);
1474
1475/* wscasecmp.c */
1476int wscasecmp(const wchar_t *s1, const wchar_t *s2);
1477
1478/* wscat.c */
1479wchar_t *wcscat(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2);
1480wchar_t *wscat(wchar_t *s1, const wchar_t *s2);
1481
1482/* wschr.c */
1483wchar_t *wcschr(const wchar_t *sp, wchar_t c);
1484wchar_t *wschr(const wchar_t *sp, wchar_t c);
1485
1486/* wscmp.c */
1487int wcscmp(const wchar_t *s1, const wchar_t *s2);
1488int wscmp(const wchar_t *s1, const wchar_t *s2);
1489
1490/* wscol.c */
1491int wscol(const wchar_t *s1);
1492
1493/* wscpy.c */
1494wchar_t *wcscpy(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2);
1495wchar_t *wscpy(wchar_t *s1, const wchar_t *s2);
1496
1497/* wscspn.c */
1498size_t wcscspn(const wchar_t *string, const wchar_t *charset);
1499size_t wscspn(const wchar_t *string, const wchar_t *charset);
1500
1501/* wsdup.c */
1502wchar_t *wsdup(const wchar_t *s1);
1503
1504/* wslen.c */
1505size_t wcslen(const wchar_t *s);
1506size_t wslen(const wchar_t *s);
1507
1508/* wsncasecmp.c */
1509int wsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1510
1511/* wsncat.c */
1512wchar_t *wcsncat(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1513	size_t n);
1514wchar_t *wsncat(wchar_t *s1, const wchar_t *s2, size_t n);
1515
1516/* wsncmp.c */
1517int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1518int wsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
1519
1520/* wsncpy.c */
1521wchar_t *wcsncpy(wchar_t *_RESTRICT_KYWD s1, const wchar_t *_RESTRICT_KYWD s2,
1522	size_t n);
1523wchar_t *wsncpy(wchar_t *s1, const wchar_t *s2, size_t n);
1524
1525/* wspbrk.c */
1526wchar_t *wcspbrk(const wchar_t *string, const wchar_t *brkset);
1527wchar_t *wspbrk(const wchar_t *string, const wchar_t *brkset);
1528
1529/* wsprintf.c */
1530int wsprintf(wchar_t *wstring, const char *format, ...);
1531
1532/* wsrchr.c */
1533wchar_t *wcsrchr(const wchar_t *sp, wchar_t c);
1534wchar_t *wsrchr(const wchar_t *sp, wchar_t c);
1535
1536/* wsscanf.c */
1537int wsscanf(wchar_t *s, const char *format, ...);
1538
1539/* wssize.c */
1540
1541/* wsspn.c */
1542size_t wcsspn(const wchar_t *string, const wchar_t *charset);
1543size_t wsspn(const wchar_t *string, const wchar_t *charset);
1544
1545/* wstod.c */
1546double wcstod(const wchar_t *_RESTRICT_KYWD cp, wchar_t **_RESTRICT_KYWD ptr);
1547float wcstof(const wchar_t *_RESTRICT_KYWD cp, wchar_t **_RESTRICT_KYWD ptr);
1548long double wcstold(const wchar_t *_RESTRICT_KYWD cp,
1549	wchar_t **_RESTRICT_KYWD ptr);
1550double wstod(const wchar_t *cp, wchar_t **ptr);
1551
1552/* wstok.c */
1553#if !defined(__amd64) 		/* XX64 - fix me */
1554wchar_t *wcstok(wchar_t *string, const wchar_t *sepset);
1555wchar_t *wstok(wchar_t *string, const wchar_t *sepset);
1556#endif	/* __amd64 */
1557
1558/* wcstol.c */
1559long wcstol(const wchar_t *_RESTRICT_KYWD str, wchar_t **_RESTRICT_KYWD ptr,
1560	int base);
1561long long wcstoll(const wchar_t *_RESTRICT_KYWD str,
1562	wchar_t **_RESTRICT_KYWD ptr, int base);
1563
1564/* wcstoul.c */
1565unsigned long wcstoul(const wchar_t *_RESTRICT_KYWD str,
1566	wchar_t **_RESTRICT_KYWD ptr, int base);
1567unsigned long long wcstoull(const wchar_t *_RESTRICT_KYWD str,
1568	wchar_t **_RESTRICT_KYWD ptr, int base);
1569
1570/* wcstoimax.c */
1571intmax_t wcstoimax(const wchar_t *_RESTRICT_KYWD nptr,
1572	wchar_t **_RESTRICT_KYWD endptr, int base);
1573uintmax_t wcstoumax(const wchar_t *_RESTRICT_KYWD nptr,
1574	wchar_t **_RESTRICT_KYWD endptr, int base);
1575
1576/* wstol.c */
1577long wstol(const wchar_t *str, wchar_t **ptr, int base);
1578
1579/* wstoll.c */
1580long long wstoll(const wchar_t *str, wchar_t **ptr, int base);
1581long long watoll(const wchar_t *p);
1582
1583/* wsxfrm.c */
1584size_t wsxfrm(wchar_t *s1, const wchar_t *s2, size_t n);
1585int wscoll(const wchar_t *s1, const wchar_t *s2);
1586
1587/*
1588 * /usr/src/lib/libc/port/gen/event_port.c
1589 */
1590int port_dispatch(int port, int flags, int source, int events, uintptr_t object,
1591    void *user);
1592
1593/*
1594 * /usr/src/lib/libc/$MACH/gen routines
1595 */
1596
1597/* alloca.s */
1598
1599void *__builtin_alloca(size_t);
1600
1601/*
1602 * modctl(int arg, ...) and utssys(...) are not available from a header
1603 * file, but our utilities which make use of it should be able to be
1604 * lint clean.
1605 */
1606int modctl(int arg, ...);
1607int utssys(void *buf, int arg, int type, void *outbp);
1608
1609
1610typedef float single;
1611typedef unsigned extended[3];
1612typedef long double quadruple;
1613typedef unsigned fp_exception_field_type;
1614
1615typedef char decimal_string[512];
1616
1617enum fp_class_type {
1618	fp_zero	 = 0,
1619	fp_subnormal    = 1,
1620	fp_normal	= 2,
1621	fp_infinity	= 3,
1622	fp_quiet	= 4,
1623	fp_signaling    = 5
1624};
1625
1626enum fp_direction_type {
1627	fp_nearest	= 0,
1628	fp_tozero	= 1,
1629	fp_positive	= 2,
1630	fp_negative	= 3
1631};
1632
1633typedef struct {
1634	enum fp_class_type fpclass;
1635	int sign;
1636	int exponent;
1637	decimal_string ds;
1638	int more;
1639	int ndigits;
1640} decimal_record;
1641
1642enum decimal_form {
1643	fixed_form,
1644	floating_form
1645};
1646
1647typedef struct {
1648	enum fp_direction_type rd;
1649	enum decimal_form df;
1650	int ndigits;
1651} decimal_mode;
1652
1653enum decimal_string_form {
1654	invalid_form,
1655	whitespace_form,
1656	fixed_int_form,
1657	fixed_intdot_form,
1658	fixed_dotfrac_form,
1659	fixed_intdotfrac_form,
1660	floating_int_form,
1661	floating_intdot_form,
1662	floating_dotfrac_form,
1663	floating_intdotfrac_form,
1664	inf_form,
1665	infinity_form,
1666	nan_form,
1667	nanstring_form
1668};
1669
1670typedef int sigfpe_code_type;
1671
1672typedef void (*sigfpe_handler_type)();
1673
1674extern sigfpe_handler_type sigfpe(sigfpe_code_type, sigfpe_handler_type);
1675
1676extern void single_to_decimal(single *, decimal_mode *, decimal_record *,
1677				fp_exception_field_type *);
1678
1679extern void double_to_decimal(double *, decimal_mode *, decimal_record *,
1680				fp_exception_field_type *);
1681extern void extended_to_decimal(extended *, decimal_mode *,
1682				decimal_record *, fp_exception_field_type *);
1683extern void quadruple_to_decimal(quadruple *, decimal_mode *,
1684				decimal_record *, fp_exception_field_type *);
1685extern void decimal_to_single(single *, decimal_mode *, decimal_record *,
1686				fp_exception_field_type *);
1687extern void decimal_to_double(double *, decimal_mode *, decimal_record *,
1688				fp_exception_field_type *);
1689extern void decimal_to_extended(extended *, decimal_mode *,
1690				decimal_record *, fp_exception_field_type *);
1691extern void decimal_to_quadruple(quadruple *, decimal_mode *,
1692				decimal_record *, fp_exception_field_type *);
1693extern void string_to_decimal(char **, int, int, decimal_record *,
1694				enum decimal_string_form *, char **);
1695extern void func_to_decimal(char **, int, int, decimal_record *,
1696				enum decimal_string_form *, char **,
1697				int (*)(void), int *, int (*)(int));
1698extern void file_to_decimal(char **, int, int, decimal_record *,
1699				enum decimal_string_form *, char **,
1700				FILE *, int *);
1701extern char *seconvert(single *, int, int *, int *, char *);
1702extern char *sfconvert(single *, int, int *, int *, char *);
1703extern char *sgconvert(single *, int, int, char *);
1704extern char *econvert(double, int, int *, int *, char *);
1705extern char *fconvert(double, int, int *, int *, char *);
1706extern char *gconvert(double, int, int, char *);
1707extern char *qeconvert(quadruple *, int, int *, int *, char *);
1708extern char *qfconvert(quadruple *, int, int *, int *, char *);
1709extern char *qgconvert(quadruple *, int, int, char *);
1710
1711extern void __assert(const char *, const char *, int);
1712
1713extern int setjmp(jmp_buf);
1714extern void longjmp(jmp_buf, int);
1715extern int sigsetjmp(sigjmp_buf, int);
1716extern void siglongjmp(sigjmp_buf, int);
1717
1718int uname(struct utsname *);
1719int _uname(struct utsname *);
1720
1721int errno;
1722int *___errno()
1723{ return (&errno); }
1724
1725extern int getloadavg(double [], int);
1726
1727extern long pcsample(uintptr_t [], long);
1728
1729int fstat(int, struct stat *);
1730int stat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
1731int lstat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
1732int mknod(const char *, mode_t, dev_t);
1733
1734extern int __init_daemon_priv(int, uid_t uid, gid_t gid, ...);
1735extern void __fini_daemon_priv(const char *, ...);
1736extern int __init_suid_priv(int, ...);
1737extern int __priv_bracket(priv_op_t);
1738extern void __priv_relinquish(void);
1739extern const char * __priv_getsetbynum(const void *, int);
1740extern char * __priv_set_to_str(void *, const priv_set_t *, char, int);
1741
1742/* private interface to get the groups list for a certain user */
1743int _getgroupsbymember(const char *, gid_t[], int, int);
1744
1745/* private interface for use only by java */
1746volatile sc_shared_t *volatile *_thr_schedctl(void);
1747
1748/* private interface to unmount all autofs mounts */
1749int _autofssys(enum autofssys_op, void *);
1750
1751/* label.c */
1752extern int is_system_labeled(void);
1753
1754extern int uconv_u16tou32(const uint16_t *, size_t *, uint32_t *, size_t *,
1755	int);
1756extern int uconv_u16tou8(const uint16_t *, size_t *, uchar_t *, size_t *, int);
1757extern int uconv_u32tou16(const uint32_t *, size_t *, uint16_t *, size_t *,
1758	int);
1759extern int uconv_u32tou8(const uint32_t *, size_t *, uchar_t *, size_t *, int);
1760extern int uconv_u8tou16(const uchar_t *, size_t *, uint16_t *, size_t *, int);
1761extern int uconv_u8tou32(const uchar_t *, size_t *, uint32_t *, size_t *, int);
1762extern int u8_validate(char *, size_t, char **, int, int *);
1763extern int u8_strcmp(const char *, const char *, size_t, int, size_t, int *);
1764extern size_t u8_textprep_str(char *, size_t *, char *, size_t *, int, size_t,
1765	int *);
1766