intro(3)




NAME

     Intro, intro - introduction to functions and libraries


DESCRIPTION

     This section describes functions found  in  various  Solaris
     libraries, other than those functions described in Section 2
     of this manual that directly invoke UNIX system  primitives.
     Function  declarations  can  be  obtained  from the #include
     files indicated on each page. Pages are grouped  by  library
     and  are  identified by the library name (or an abbreviation
     of the library name) after the section  number.  Collections
     of  related  libraries  are  grouped  into  five  volumes as
     described below. A  sixth  volume  (listed  first)  contains
     pages  describing  the  contents  of each shared library and
     each header used by  the  functions,  macros,  and  external
     variables described in the remaining five volumes.

  Library Interfaces and Headers
     This volume describes the contents of  each  shared  library
     and  each  header  used  by  functions, macros, and external
     variables described in the remaining five volumes.

     (3LIB)
           The libraries described in  this  section  are  imple-
           mented as shared objects.

           Descriptions of shared objects may include  a  defini-
           tion  of  the  global  symbols  that define the shared
           objects' public interface, for example SUNW_1.1. Other
           interfaces  may  exist  within  the shared object, for
           example SUNW_private.1.1. The  public  interface  pro-
           vides  a stable, committed set of symbols for applica-
           tion  development.  The  private  interfaces  are  for
           internal use only, and may change at any time.

           For many shared objects, an archive  library  is  pro-
           vided  for  backward  compatibility  on 32-bit systems
           only. Use of these libraries may restrict an  applica-
           tions  ability  to  migrate  between different Solaris
           releases. As dynamic linking is the preferred compila-
           tion  method on Solaris, the use of these libraries is
           discouraged.

     (3LIBUCB)
           The SunOS/BSD  Compatibility  libraries  described  in
           this  section  are implemented as a shared object. See
           (3LIB) above.

     (3HEAD)
           The headers described in  this  section  are  used  by
           functions,  macros,  and  external  variables. Headers
           contain function prototypes, definitions  of  symbolic
           constants, common structures, preprocessor macros, and
           defined types. Each function described in the  remain-
           ing  five volumes specifies the headers that an appli-
           cation must include in order to use that function.  In
           most  cases only one header is required. These headers
           are present on an application development system; they
           do have to be present on the target execution system.

  Basic Library Functions
     The functions described  in  this  volume  are  the  core  C
     library functions that are basic to application development.

     (3C)  These functions, together with  those  of  Section  2,
           constitute  the  standard  C  library,  libc, which is
           automatically linked by the C compilation system.  The
           standard  C library is implemented as a shared object,
           libc.so, and as an archive,  libc.a.  C  programs  are
           linked  with the shared object version of the standard
           C library by default. Specify -Bstatic or -dn  on  the
           cc  command line to link with the archive version. See
           libc(3LIB), cc(1B) for other  overrides,  and  the  "C
           Compilation System" chapter of the ANSI C Programmer's
           Guide for a discussion.  Some  functions  behave  dif-
           ferently  in  standard-conforming  environments.  This
           behavior is noted on the individual manual pages.  See
           standards(5).

     (3DL) These  functions  constitute   the   dynamic   linking
           library,  libdl.  This  library  is  implemented  as a
           shared object,  libdl.so,  but  is  not  automatically
           linked  by  the  C compilation system. Specify -ldl on
           the cc command line to link  with  this  library.  See
           libdl(3LIB).

     (3MALLOC)
           These functions constitute the various memory  alloca-
           tion libraries: libmalloc, libbsdmalloc, libmapmalloc,
           libmtmalloc, and libumem. Each of these  libraries  is
           implemented   as   a   shared   object  (libmalloc.so,
           libbsdmalloc.so, libmapmalloc.so, libmtmalloc.so,  and
           libumem.so)  and  libmalloc, libbsdmalloc, and libmap-
           malloc  are  implemented  as  archives   (libmalloc.a,
           libbsdmalloc.a,  and  libmapmalloc.a). These libraries
           are not automatically linked by the C compilation sys-
           tem.   Specify   -lmalloc,  -lbsdmalloc,  -lmapmalloc,
           -lmtmalloc, and -lumem  to  link  with,  respectively,
           libmalloc,  libbsdmalloc,  libmapmalloc,  libmtmalloc,
           and libumem. See libmalloc(3LIB),  libbsdmalloc(3LIB),
           libmapmalloc(3LIB),       libmtmalloc(3LIB),       and
           libumem(3LIB).

     (3UCB)
           These functions constitute  the  Source  Compatibility
           (with  BSD  functions) library. It is implemented as a
           shared object, libucb.so, and as an archive, libucb.a,
           but  is  not automatically linked by the C compilation
           system. Specify -lucb on the cc command line  to  link
           with  this  library,  which is located in the /usr/ucb
           subdirectory.  Headers for this  library  are  located
           within /usr/ucbinclude. See libucb(3LIBUCB).

  Networking Library Functions
     The functions described in this volume comprise the  various
     networking libraries.

     (3GSS)
           The functions in this library are  the  routines  that
           comprise  the  Generic  Security Services API library.
           This  library  is  implemented  as  a  shared  object,
           libgss.so.1,  but  it  is  not automatically linked by
           the C compilation system.  Specify  -lgss  on  the  cc
           command   line   to   link   with  this  library.  See
           libgss(3LIB).

     (3LDAP)
           These functions constitute the  Lightweight  Directory
           Access   Protocol  library,  libldap.  This library is
           implemented as a shared object, libldap.so, but is not
           automatically  linked  by  the  C  compilation system.
           Specify -lldap on the cc command  line  to  link  with
           this library. See ldap(3LDAP).

     (3NSL)
           These  functions  constitute   the   Network   Service
           Library,  libnsl.   This  library  is implemented as a
           shared object, libnsl.so, and as an archive, libnsl.a,
           but  is  not automatically linked by the C compilation
           system. Specify -lnsl on the cc command line  to  link
           with this library. See libnsl(3LIB).

           Many base networking functions are also  available  in
           the X/Open Networking Interfaces library, libxnet. See
           section (3XNET) below  for  more  information  on  the
           libxnet interfaces.

     (3RAC)
           These functions  constitute  the  remote  asynchronous
           calls  library, librac. This library is implemented as
           a  shared  object,  librac.so,  and  as  an   archive,
           librac.a,  but  is  not  automatically linked by the C
           compilation system. Specify -lrac on  the  cc  command
           line to link with this library. See librac(3LIB).

     (3RESOLV)
           These  functions  constitute  the  resolver   library,
           libresolv.  This  library  is  implemented as a shared
           object, libresolv.so, and as an archive,  libresolv.a,
           but  is  not automatically linked by the C compilation
           system. Specify -lresolv on the  cc  command  line  to
           link with this library. See libresolv(3LIB).

     (3RPC)
           These functions constitute the remote  procedure  call
           libraries, librpcsvc and librpcsoc. The latter is pro-
           vided for compatibility only; new applications  should
           not  link  to  it.  Both  libraries are implemented as
           shared objects, librpcsvc.so and librpcsoc.so, respec-
           tively,  and  librpcsvc  is implemented as an archive,
           librpcsvc.a. Neither library is  automatically  linked
           by  the  C  compilation  system.  Specify  -lrpcsvc or
           -lrpcsoc on the cc command line  to  link  with  these
           libraries. See librpcsvc(3LIB) and librpcsoc(3LIBUCB).

     (3SLP)
           These functions constitute the Service Location Proto-
           col  library, libslp. This library is implemented as a
           shared object,  libslp.so.1, but it is  not  automati-
           cally   linked   by  the  C  compilation  system.  See
           libslp(3LIB)

     (3SOCKET)
           These functions constitute the sockets  library,  lib-
           socket.  This  library  is  implemented  as  a  shared
           object, libsocket.so, and as an archive,  libsocket.a,
           but  is  not automatically linked by the C compilation
           system. Specify -lsocket on the  cc  command  line  to
           link with this library. See libsocket(3LIB).

     (3XFN)
           These functions constitute the X/Open Federated Naming
           library,  libxfn.  This  library  is  implemented as a
           shared object, libxfn.so,  but  is  not  automatically
           linked  by  the C compilation system. Specify -lxfn on
           the cc command line to link  with  this  library.  See
           libxfn(3LIB), xfn(3XFN), fns(5), and standards(5).

     (3XNET)
           These functions constitute  X/Open  networking  inter-
           faces  which comply with the X/Open CAE Specification,
           Networking Services, Issue 4 (September,  1994).  This
           library is implemented as a shared object, libxnet.so,
           but is not automatically linked by the  C  compilation
           system.  Specify -lxnet on the cc command line to link
           with this library. See libxnet(3LIB) and  standards(5)
           for compilation information.

     Under all circumstances, the  use  of  the  Sockets  API  is
     recommended  over  the  XTI  and TLI APIs. If portability to
     other XPGV4v2 (see standards(5)) systems is  a  requirement,
     the  application  must use the libxnet interfaces. If porta-
     bility is not required, the sockets interfaces in  libsocket
     and  libnsl  are  recommended over those in libxnet. Between
     the XTI and TLI APIs, the  XTI  interfaces  (available  with
     libxnet)  are recommended over the TLI interfaces (available
     with libnsl).

  Curses Library Functions
     The  functions  described  in  this  volume   comprise   the
     libraries  that provide graphics and character screen updat-
     ing capabilities.

     (3CURSES)
           The functions constitute the following libraries:

           libcurses
                 These functions constitute the  curses  library,
                 libcurses.  This  library  is  implemented  as a
                 shared object, libcurses.so, and as an  archive,
                 libcurses.a,  but is not automatically linked by
                 the C compilation system.  Specify  -lcurses  on
                 the  cc  command line to link with this library.
                 See libcurses(3LIB).

           libform
                 These functions constitute  the  forms  library,
                 libform. This library is implemented as a shared
                 object,   libform.so,   and   as   an   archive,
                 libforms.a,  but  is not automatically linked by
                 the C compilation system. Specify -lform on  the
                 cc  command  line to link with this library. See
                 libform(3LIB).

           libmenu
                 These functions constitute  the  menus  library,
                 libmenu. This library is implemented as a shared
                 object,   libmenu.so,   and   as   an   archive,
                 libmenu.a,  but  is  not automatically linked by
                 the C compilation system. Specify -lmenu on  the
                 cc  command  line to link with this library. See
                 libmenu(3LIB).

           libpanel
                 These functions constitute the  panels  library,
                 libpanel.  This  library  is  implemented  as  a
                 shared object, libpanel.so, and as  an  archive,
                 libpanel.a,  but  is not automatically linked by
                 the C compilation system. Specify -lpanel on the
                 cc  command  line to link with this library. See
                 libpanel(3LIB).

     (3PLOT)
           These functions constitute the grapnics library,  lib-
           plot.  This library is implemented as a shared object,
           libplot.so, and as an archive, libplot.a, but  is  not
           automatically  linked  by  the  C  compilation system.
           Specify -lplot on the cc command  line  to  link  with
           this library. See libplot(3LIB).

     (3XCURSES)
           These functions constitute the X/Open Curses  library,
           located  in /usr/xpg4/lib/libcurses.so.1. This library
           provides a set of internationalized functions and mac-
           ros  for  creating and modifying input and output to a
           terminal screen.  Included in this library  are  func-
           tions for creating windows, highlighting text, writing
           to the screen, reading from user input, and moving the
           cursor.  X/Open  Curses is designed to optimize screen
           update activities. The X/Open Curses library  conforms
           fully  with  Issue  4  of  the  X/Open Extended Curses
           specification.

  Threads and Realtime Library Functions
     The  functions  described  in  this  volume  constitute  the
     threads and realtime libraries.

     (3AIO)
           These  functions  constitute  the   asynchronous   I/O
           library,  liaio.  This  library  is  implemented  as a
           shared object, libaio.so,  but  is  not  automatically
           linked  by  the C compilation system. Specify -laio on
           the cc command line to link  with  this  library.  See
           libaio(3LIB).

     (3DOOR)
           These functions constitute the doors library, libdoor.
           This  library  is  implemented  as  a  shared  object,
           libdoor.so, but is not automatically linked by  the  C
           compilation  system.  Specify -ldoor on the cc command
           line to link with this library.

     (3RT) These  functions  constitute  the   POSIX.4   Realtime
           library,  librt. It is implemented as a shared object,
           librt.so, but is not automatically  linked  by  the  C
           compilation  system.  Specify  -lrt  on the cc command
           line to link with this library.  Note that the  former
           name  for  this  library, libposix4, is maintained for
           backward compatibility  but  should  be  avoided.  See
           librt(3LIB).

     (3SCHED)
           These functions constitute the LWP scheduling library,
           libsched.  This  library  is  implemented  as a shared
           object, libsched.so, but is not  automatically  linked
           by the C compilation system. Specify -lsched on the cc
           command line to link with this library. .

     (3THR)
           These  functions  constitute  the  threads  libraries,
           libpthread,    libthread,    and   libthread_db.   The
           libpthread and libthread libraries are used for build-
           ing  multithreaded applications: libpthread implements
           the  POSIX  (see  standards(5))   threads   interface,
           whereas   libthread  implements  the  Solaris  threads
           interface. The  libthread_db  library  is  useful  for
           building debuggers for multithreaded applications.

           Both POSIX threads and Solaris  threads  can  be  used
           within the same application. Their implementations are
           completely compatible with each other;  however,  only
           POSIX  threads  guarantee  portability to other POSIX-
           conforming environments.

           When POSIX and Solaris threads are used  in  the  same
           application, if there are calls with the same name but
           different semantics, the POSIX semantic supersedes the
           Solaris  threads  semantic.  For  example, the call to
           fork() will imply the fork1() semantic  in  a  program
           linked  with the POSIX threads library, whether or not
           it is also linked with -lthread (Solaris threads).

           The libpthread, libthread, and libthread_db  libraries
           are  implemented  as  shared  objects,  libpthread.so,
           libthread_db.so, and libthread.so, respectively. These
           libraries are not automatically linked by the C compi-
           lation  system.  Specify   -lpthread,   -lthread,   or
           -lthread_db  on the cc command line to link with these
           libraries. See libpthread(3LIB), libthread(3LIB),  and
           libthread_db(3LIB).

  Extended Library Functions
     The functions described in this volume comprise various spe-
     cialized libraries that are not limited to the following:

     (3BSM)
           These functions constitute the basic security library,
           libbsm.  This  library  is  implemented  as  a  shared
           object, libbsm.so, and as an archive, libbsm.a, but is
           not  automatically linked by the C compilation system.
           Specify -lbsm on the cc command line to link with this
           library. See libbsm(3LIB).

     (3CFGADM)
           These functions constitute the configuration  adminis-
           tration  library,  libcfgadm.  This  library is imple-
           mented as a shared object, libcfgadm.so,  but  is  not
           automatically  linked  by  the  C  compilation system.
           Specify -lcfgadm on the cc command line to  link  with
           this library. See libcfgadm(3LIB).

     (3CPC)
           These functions constitute the CPU performance counter
           library,  libcpc,  and  the  process  context library,
           libpctx. These libraries  are  implemented  as  shared
           objects,  libcpc.so  and libpctx.so, respectively, but
           are not automatically linked by the C compilation sys-
           tem. Specify -lcpc or -lpctx on the cc command line to
           link  with  these  libraries.  See  libcpc(3LIB)   and
           libpctx(3LIB).

     (3DEVID)
           These functions  constitute  the  device  ID  library,
           libdevid.  This  library  is  implemented  as a shared
           object, libdevid.so, but is not  automatically  linked
           by the C compilation system. Specify -ldevid on the cc
           command  line  to  link   with   this   library.   See
           libdevid(3LIB).

     (3DEVINFO)
           These  functions  constitute  the  device  information
           library,  libdevinfo. This library is implemented as a
           shared object, libdevinfo.so,  but  is  not  automati-
           cally  linked  by  the  C  compilation system. Specify
           -ldevinfo on the cc command line  to  link  with  this
           library. See libdevinfo(3LIB).

     (3DMI)
           These functions constitute the DMI libraries,  libdmi,
           libdmici,  and  libdmimi.  These  libraries are imple-
           mented as shared objects, libdmi.so, libdmici.so,  and
           libdmimi.so,  respectively,  but are not automatically
           linked by the C  compilation  system.  Specify  -ldmi,
           -ldmici,  or  -ldmimi  on  the cc command line to link
           with    these     libraries.     See     libdmi(3LIB),
           libdmici(3LIB), and libdmimi(3LIB).

     (3ELF)
           These functions constitute  the  ELF  access  library,
           libelf,  (Extensible  Linking  Format).   This library
           provides the interface for the creation  and  analyses
           of  "elf"  files;  executables,  objects,  and  shared
           objects. libelf is implemented  as  a  shared  object,
           libelf.so,  and  as  an  archive, libelf.a, but is not
           automatically linked  by  the  C  compilation  system.
           Specify -lelf on the cc command line to link with this
           library. See libelf(3LIB).

     (3EXACCT)
           These functions  constitute  the  extended  accounting
           access  library,  libexacct,  and the project database
           access library, libproject. These libraries are imple-
           mented    as    shared   objects,   libexacct.so   and
           libproject.so, respectively, but are not automatically
           linked  by  the C compilation system. Specify -lexacct
           or -lproject on the cc command line to link with these
           libraries. See libexacct(3LIB) and libproject(3LIB).

     (3GEN)
           These functions constitute the string pattern-matching
           and   pathname   manipulation  library,  libgen.  This
           library is implemented as a shared object,  libgen.so,
           and  as an archive, libgen.a, but is not automatically
           linked by the C compilation system. Specify  -lgen  on
           the  cc  command  line  to link with this library. See
           libgen(3LIB).

     (3KSTAT)
           These  functions  constitute  the  kernel   statistics
           library,  which  is  implemented  as  a shared object,
           libkstat.so, and as an archive, libkstat.a, but is not
           automatically  linked  by  the  C  compilation system.
           Specify -lkstat on the cc command line  to  link  with
           this library. See libkstat(3LIB).

     (3KVM)
           These functions allow access to the  kernel's  virtual
           memory  library,  which  is  implemented  as  a shared
           object, libkvm.so, and as an archive, libkvm.a, but is
           not  automatically linked by the C compilation system.
           Specify -lkvm on the cc command line to link with this
           library. See libkvm(3LIB).

     (3LAYOUT)
           These functions constitute the layout service library,
           which is implemented as a shared object, liblayout.so,
           but is not automatically linked by the  C  compilation
           system.  Specify  -llayout  on  the cc command line to
           link with this library. See liblayout(3LIB).

     (3LGRP)
           These functions constitute the locality group library,
           which  is  implemented as a shared object, liblgrp.so,
           but is not automatically linked by the  C  compilation
           system.  Specify -llgrp on the cc command line to link
           with this library. See liblgrp(3LIB).

     (3M)  These functions constitute the  mathematical  library,
           libm.  This library is implemented as a shared object,
           libm.so,  and  as  an  archive,  libm.a,  but  is  not
           automatically  linked  by  the  C  compilation system.
           Specify -lm on the cc command line to link  with  this
           library.

     (3MAIL)
           These functions constitute the user mailbox management
           library,  libmail.  This  library  is implemented as a
           shared  object,  libmail.so,  and   as   an   archive,
           libmail.a,  but  is  not automatically linked by the C
           compilation system. Specify -lmail on the  cc  command
           line to link with this library.

     (3MP) These functions constitute  the  integer  mathematical
           library,  libmp.  This  library  is  implemented  as a
           shared object, libmp.so, and as an  archive,  libmp.a,
           but  is  not automatically linked by the C compilation
           system. Specify -lmp on the cc command  line  to  link
           with this library. See libmp(3LIB).

     (3NVPAIR)
           These  functions  constitute   the   name-value   pair
           library,  libnvpair.  This library is implemented as a
           shared object, libnvpair.so, but is not  automatically
           linked  by  the C compilation system. Specify -lnvpair
           on the cc command line to link with this library.  See
           libnvpair(3LIB).

     (3PAM)
           These functions constitute the  Pluggable  Authentica-
           tion  Module  (PAM)  library,  libpam. This library is
           implemented as a shared object, libpam.so, and  as  an
           archive,  libpam.a, but is not automatically linked by
           the C compilation system. Specify -lpam on the cc com-
           mand line to link with this library. See libpam(3LIB).

     (3PICL)
           These functions constitute the PICL library,  libpicl.
           This  library  is  implemented  as  a  shared  object,
           libpicl.so, but is not automatically linked by  the  C
           compilation  system.  Specify -lpicl on the cc command
           line to link with this library. See libpicl(3LIB)  and
           libpicl(3PICL).

     (3PICLTREE)
           These functions constitute the PICL  plug-in  library,
           libpicltree.  This  library is implemented as a shared
           object,  libpicltree.so,  but  is  not   automatically
           linked by the C compilation system. Specify -lpicltree
           on the cc command line to link with this library.  See
           libpicltree(3LIB) and libpicltree(3PICLTREE).

     (3POOL)
           These  functions  constitute  the  pool  configuration
           manipulation  library, libpool. This library is imple-
           mented as a shared  object,  libpool.so,  but  is  not
           automatically  linked  by  the  C  compilation system.
           Specify -lpool on the cc command  line  to  link  with
           this library. See libpool(3LIB).

     (3PROJECT)
           These functions constitute the project database access
           library,  libproject. This library is implemented as a
           shared object, libproject.so, but is not automatically
           linked  by the C compilation system. Specify -lproject
           on the cc command line to link with this library.  See
           libproject(3LIB).

     (3RSM)
           These functions constitute the  remote  shared  memory
           library,  librsm.  This  library  is  implemented as a
           shared object, librsm.so,  but  is  not  automatically
           linked  by  the C compilation system. Specify -lrsm on
           the cc command line to link  with  this  library.  See
           librsm(3LIB).

     (3SEC)
           These functions constitute  the  file  access  control
           library,  libsec.  This  library  is  implemented as a
           shared object, libsec.so, and as an archive, libsec.a,
           but  is  not automatically linked by the C compilation
           system. Specify -lsec on the cc command line  to  link
           with this library. See libsec(3LIB).

     (3SECDB)
           These functions  constitute  the  security  attributes
           database  library,  libsecdb.  This  library is imple-
           mented as a shared object,  libsecdb.so,  but  is  not
           automatically  linked  by  the  C  compilation system.
           Specify -lsecdb on the cc command line  to  link  with
           this library. See libsecdb(3LIB).

     (3SMARTCARD)
           These  functions  constitute  the  smartcard  library,
           libsmartcard.  This library is implemented as a shared
           object,  libsmartcard.so,  but  is  not  automatically
           linked   by   the   C   compilation   system.  Specify
           -lsmartcard on the cc command line to link  with  this
           library. See libsmartcard(3LIB).

     (3SNMP)
           These  functions  constitute   the   SNMP   libraries,
           libdssagent   and  libdssasnmp.  These  libraries  are
           implemented  as  shared  objects,  libssagent.so   and
           libssasnmp.so, respectively, but are not automatically
           linked by the C compilation system. Specify  -lssagent
           or -lssasnmp on the cc command line to link with these
           libraries. See libssagent(3LIB)  and libssasnmp(3LIB).

     (3SYSEVENT)
           These functions constitute the system  event  library,
           libsysevent.  This  library is implemented as a shared
           object,  libsysevent.so,  but  is  not   automatically
           linked by the C compilation system. Specify -lsysevent
           on the cc command line to link with this library.  See
           libsysevent(3LIB).

     (3TNF)
           These functions constitute the TNF libraries,  libtnf,
           libtnfctl, and libtnfprobe. These libraries are imple-
           mented as shared objects, libtnf.so, libtnfctl.so, and
           libtnfprobe.so,  respectively,  but  are not automati-
           cally linked by  the  C  compilation  system.  Specify
           -ltnf,  -ltnfctl, or -ltnfprobe on the cc command line
           to link with these libraries. See libtnfctl(3TNF)  and
           libtnfctl(3LIB).

     (3VOLMGT)
           These  functions  constitute  the  volume   management
           library,  libvolmgt.  This library is implemented as a
           shared  object,  libvolmgt.so,  and  as  an   archive,
           libvolmgt.a,  but is not automatically linked by the C
           compilation system. Specify -lvolmgt on the cc command
           line to link with this library. See libvolmgt(3LIB).

     (3WSREG)
           These functions constitute the product install  regis-
           try  library, libwsreg. This library is implemented as
           a shared object, libwsreg.so, but is not automatically
           linked by the C compilation system. Specify -lwsreg on
           the cc command line to link  with  this  library.  See
           libwsreg(3LIB).


DEFINITIONS

     A character is any bit pattern able to fit into  a  byte  on
     the  machine.  In  some  international languages, however, a
     "character"  may  require  more  than  one  byte,   and   is
     represented in multi-bytes.

     The null character is a character with value 0,  convention-
     ally  represented in the C language as \0. A character array
     is a sequence of  characters.  A  null-terminated  character
     array  (a  string)  is a sequence of characters, the last of
     which is the null character. The null string is a  character
     array containing only the terminating null character. A null
     pointer is the value that is obtained by casting  0  into  a
     pointer. C guarantees that this value will not match that of
     any  legitimate  pointer,  so  many  functions  that  return
     pointers return NULL to indicate an error. The macro NULL is
     defined in <stdio.h>. Types of the form size_t  are  defined
     in the appropriate headers.


MT-Level of Libraries

     See attributes(5) for descriptions of library MT-Levels.


FILES

     INCDIR
           usually /usr/include

     LIBDIR
           usually /usr/lib (32-bit) or /usr/lib/sparcv9(64-bit)

     LIBDIR/libc.so

     LIBDIR/libc.a

     LIBDIR/libgen.a

     LIBDIR/libm.a

     LIBDIR/libsfm.sa

     /usr/lib/libc.so.1


SEE ALSO

     ar(1), cc(1B), ld(1), fork(2),  intro(3), stdio(3C),  attri-
     butes (5), standards(5)

     Linker and Libraries Guide

     Profiling Tools

     ANSI C Programmer's Guide


DIAGNOSTICS

     For functions that return floating-point values, error  han-
     dling  varies  according  to compilation mode. Under the -Xt
     (default) option to cc, these functions return  the  conven-
     tional  values  0,  _HUGE, or NaN when the function is unde-
     fined for the given arguments  or  when  the  value  is  not
     representable.   In  the  -Xa  and  -Xc  compilation  modes,
     _HUGE_VAL is returned instead of _HUGE. (HUGE_VAL  and  HUGE
     are  defined  in  math.h  to  be  infinity  and the largest-
     magnitude single-precision number, respectively.)


NOTES ON MULTITHREADED APPLICATIONS

     When  compiling  a  multithreaded  application,  either  the
     _POSIX_C_SOURCE  or _POSIX_PTHREAD_SEMANTICS flag or the -mt
     option must be specified on the command line.  This  enables
     special  definitions  for  functions only applicable to mul-
     tithreaded applications.  For  POSIX.1c-conforming  applica-
     tions, define the _POSIX_C_SOURCE flag to be >= 199506L:

     cc [flag...] file... -D_POSIX_C_SOURCE=199506L -lpthread

     For POSIX behavior with the Solaris fork() and fork1()  dis-
     tinction, compile as follows:

     cc [flag...] file... -D_POSIX_PTHREAD_SEMANTICS -lthread

     For Solaris threads behavior, compile as follows:

     cc - mt [ flag... ] file...

     When building a singlethreaded application, the  above  flag
     arguments should be undefined.

     Unsafe interfaces should be called only from the main thread
     to ensure the application's safety.

     MT-Safe interfaces are denoted in the ATTRIBUTES section  of
     the   functions  and  libraries  manual  pages  (see  attri-
     butes(5)). If a manual page does not state  explicitly  that
     an  interface  is  MT-Safe,  the user should assume that the
     interface is unsafe.


REALTIME APPLICATIONS

     Be sure to have set the environment variable LD_BIND_NOW  to
     a non-null value to enable early binding. Refer to the "When
     Relocations are Processed" chapter in Linker  and  Libraries
     Guide
      for additional information.


NOTES

     None of the functions, external variables, or macros  should
     be  redefined  in the user's programs. Any other name may be
     redefined without affecting the behavior  of  other  library
     functions,   but  such  redefinition  may  conflict  with  a
     declaration in an included header.

     The headers in INCDIR provide function prototypes  (function
     declarations  including  the types of arguments) for most of
     the functions listed in  this  manual.  Function  prototypes
     allow  the  compiler  to  check  for  correct usage of these
     functions in the user's program. The  lint  program  checker
     may  also  be used and will report discrepancies even if the
     headers are not included with #include  statements.  Defini-
     tions  for Sections 2, 3C, and 3S are checked automatically.
     Other definitions can be included by using the -l option  to
     lint.  (For example, -lm includes definitions for libm.) Use
     of lint is highly recommended. See the  lint chapter in Per-
     formance Profiling Tools.

     Users should carefully note the difference  between  STREAMS
     and  stream. STREAMS is a set of kernel mechanisms that sup-
     port the development of network services and data communica-
     tion  drivers.  It  is  composed of utility routines, kernel
     facilities, and a set of data structures.   A  stream  is  a
     file  with  its associated buffering. It is declared to be a
     pointer to a type FILE defined in <stdio.h>.

     In detailed  definitions  of  components,  it  is  sometimes
     necessary    to   refer   to   symbolic   names   that   are
     implementation-specific,  but  which  are  not   necessarily
     expected to be accessible to an application program. Many of
     these symbolic names describe boundary conditions and system
     limits.

     In this  section,  for  readability,  these  implementation-
     specific values are given symbolic names. These names always
     appear enclosed in curly brackets to distinguish  them  from
     symbolic  names  of  other implementation-specific constants
     that are accessible  to  application  programs  by  headers.
     These names are not necessarily accessible to an application
     program through a header, although they may  be  defined  in
     the documentation for a particular system.

     In general, a portable application program should not  refer
     to  these symbolic names in its code. For example, an appli-
     cation program would not be expected to test the  length  of
     an  argument  list given to a routine to determine if it was
     greater than {ARG_MAX}.

     The Federated Naming Service based on the X/Open  XFN  stan-
     dard  might  not  be  supported  in  a future release of the
     Solaris operating system.


LIST OF FUNCTIONS

     Name  Description

     COLORS(3XCURSES)
           See can_change_color(3XCURSES)

     COLOR_PAIR(3XCURSES)
           See can_change_color(3XCURSES)

     COLOR_PAIRS(3XCURSES)
           See can_change_color(3XCURSES)

     COLS(3XCURSES)
           number of columns on terminal screen

     ConnectToServer(3DMI)
           connect to a DMI service provider

     DisconnectToServer(3DMI)
           disconnect from a DMI service provider

     DmiAddComponent(3DMI)
           Management Interface database administration functions

     DmiAddGroup(3DMI)
           See DmiAddComponent(3DMI)

     DmiAddLanguage(3DMI)
           See DmiAddComponent(3DMI)

     DmiAddRow(3DMI)
           Management Interface operation functions

     DmiDeleteComponent(3DMI)
           See DmiAddComponent(3DMI)

     DmiDeleteGroup(3DMI)
           See DmiAddComponent(3DMI)

     DmiDeleteLanguage(3DMI)
           See DmiAddComponent(3DMI)

     DmiDeleteRow(3DMI)
           See DmiAddRow(3DMI)

     DmiGetAttribute(3DMI)
           See DmiAddRow(3DMI)

     DmiGetConfig(3DMI)
           Management Interface initialization functions

     DmiGetMultiple(3DMI)
           See DmiAddRow(3DMI)

     DmiGetVersion(3DMI)
           See DmiGetConfig(3DMI)

     DmiListAttributes(3DMI)
           Management Interface listing functions

     DmiListClassNames(3DMI)
           See DmiListAttributes(3DMI)

     DmiListComponents(3DMI)
           See DmiListAttributes(3DMI)

     DmiListComponentsByClass(3DMI)
           See DmiListAttributes(3DMI)

     DmiListGroups(3DMI)
           See DmiListAttributes(3DMI)

     DmiListLanguages(3DMI)
           See DmiListAttributes(3DMI)

     DmiOriginateEvent(3DMI)
           See DmiRegisterCi(3DMI)

     DmiRegister(3DMI)
           See DmiGetConfig(3DMI)

     DmiRegisterCi(3DMI)
           Service Provider functions for components

     DmiSetAttribute(3DMI)
           See DmiAddRow(3DMI)

     DmiSetConfig(3DMI)
           See DmiGetConfig(3DMI)

     DmiSetMultiple(3DMI)
           See DmiAddRow(3DMI)

     DmiUnRegisterCi(3DMI)
           See DmiRegisterCi(3DMI)

     DmiUnregister(3DMI)
           See DmiGetConfig(3DMI)

     Exacct(3PERL)
           exacct system calls and error handling

     Exacct::Catalog(3PERL)
           exacct catalog tag manipulation

     Exacct::File(3PERL)
           exacct file manipulation

     Exacct::Object(3PERL)
           exacct object manipulation

     Exacct::Object::Group(3PERL)
           exacct group manipulation

     Exacct::Object::Item(3PERL)
           exacct item manipulation

     FD_CLR(3C)
           See select(3C)

     FD_ISSET(3C)
           See select(3C)

     FD_SET(3C)
           See select(3C)

     FD_ZERO(3C)
           See select(3C)

     FN_attribute_t(3XFN)
           an XFN attribute

     FN_attrmodlist_t(3XFN)
           a list of attribute modifications

     FN_attrset_t(3XFN)
           a set of XFN attributes

     FN_attrvalue_t(3XFN)
           an XFN attribute value

     FN_bindinglist_t(3XFN)
           See fn_ctx_list_bindings(3XFN)

     FN_composite_name_t(3XFN)
           a sequence of component names spanning multiple naming
           systems

     FN_compound_name_t(3XFN)
           an XFN compound name

     FN_ctx_t(3XFN)
           an XFN context

     FN_ext_searchlist_t(3XFN)
           See fn_attr_ext_search(3XFN)

     FN_identifier_t(3XFN)
           an XFN identifier

     FN_multigetlist_t(3XFN)
           See fn_attr_multi_get(3XFN)

     FN_namelist_t(3XFN)
           See fn_ctx_list_names(3XFN)

     FN_ref_addr_t(3XFN)
           an address in an XFN reference

     FN_ref_t(3XFN)
           an XFN reference

     FN_search_control_t(3XFN)
           options for attribute search

     FN_search_filter_t(3XFN)
           filter expression for attribute search

     FN_searchlist_t(3XFN)
           See fn_attr_search(3XFN)

     FN_status_t(3XFN)
           an XFN status object

     FN_string_t(3XFN)
           a character string

     FN_valuelist_t(3XFN)
           See fn_attr_get_values(3XFN)

     IFDHCloseChannel(3SMARTCARD)
           close the communication channel with an IFD

     IFDHControl(3SMARTCARD)
           send control information to an IFD

     IFDHCreateChannel(3SMARTCARD)
           create a communication channel with an IFD

     IFDHCreateChannelByName(3SMARTCARD)
           create a communication channel with an IFD

     IFDHGetCapabilities(3SMARTCARD)
           get IFD capabilities

     IFDHICCPresence(3SMARTCARD)
           check for the presence of a smart card

     IFDHPowerICC(3SMARTCARD)
           power up or power down the smart card

     IFDHSetCapabilities(3SMARTCARD)
           set slot or card capabilities

     IFDHSetProtocolParameters(3SMARTCARD)
           set protocol parameters

     IFDHTransmitToICC(3SMARTCARD)
           transmit APDU to a smart card

     LINES(3XCURSES)
           number of lines on terminal screen

     MD5Final(3EXT)
           See md5(3EXT)

     MD5Init(3EXT)
           See md5(3EXT)

     MD5Update(3EXT)
           See md5(3EXT)

     NOTE(3EXT)
           annotate source code with info for tools

     PAIR_NUMBER(3XCURSES)
           See can_change_color(3XCURSES)

     Project(3PERL)
           Perl interface to Projects

     SCF_Card_close(3SMARTCARD)
           See SCF_Session_close(3SMARTCARD)

     SCF_Card_exchangeAPDU(3SMARTCARD)
           send a command APDU to a  card  and  read  the  card's
           response

     SCF_Card_freeInfo(3SMARTCARD)
           See SCF_Session_freeInfo(3SMARTCARD)

     SCF_Card_getInfo(3SMARTCARD)
           See SCF_Session_getInfo(3SMARTCARD)

     SCF_Card_lock(3SMARTCARD)
           perform mutex locking on a card

     SCF_Card_reset(3SMARTCARD)
           perform a reset of a smartcard

     SCF_Card_unlock(3SMARTCARD)
           See SCF_Card_lock(3SMARTCARD)

     SCF_Card_waitForCardRemoved(3SMARTCARD)
           See SCF_Terminal_waitForCardPresent(3SMARTCARD)

     SCF_Session_close(3SMARTCARD)
           close a smartcard session, terminal, or card

     SCF_Session_freeInfo(3SMARTCARD)
           deallocate information storage

     SCF_Session_getInfo(3SMARTCARD)
           retrieve information about  a  session,  terminal,  or
           card

     SCF_Session_getSession(3SMARTCARD)
           establish a context with a system's  smartcard  frame-
           work

     SCF_Session_getTerminal(3SMARTCARD)
           establish a context with a smartcard terminal (reader)

     SCF_Terminal_addEventListener(3SMARTCARD)
           receive asychronous event notification

     SCF_Terminal_close(3SMARTCARD)
           See SCF_Session_close(3SMARTCARD)

     SCF_Terminal_freeInfo(3SMARTCARD)
           See SCF_Session_freeInfo(3SMARTCARD)

     SCF_Terminal_getCard(3SMARTCARD)
           establish a context with a smartcard

     SCF_Terminal_getInfo(3SMARTCARD)
           See SCF_Session_getInfo(3SMARTCARD)

     SCF_Terminal_removeEventListener(3SMARTCARD)
           See SCF_Terminal_addEventListener(3SMARTCARD)

     SCF_Terminal_updateEventListener(3SMARTCARD)
           See SCF_Terminal_addEventListener(3SMARTCARD)

     SCF_Terminal_waitForCardAbsent(3SMARTCARD)
           See SCF_Terminal_waitForCardPresent(3SMARTCARD)

     SCF_Terminal_waitForCardPresent(3SMARTCARD)
           wait for a card to be inserted or removed

     SCF_strerror(3SMARTCARD)
           get a string describing a status code

     SLPClose(3SLP)
           close an open SLP handle

     SLPDelAttrs(3SLP)
           delete attributes

     SLPDereg(3SLP)
           deregister the SLP advertisement

     SLPEscape(3SLP)
           escapes SLP reserved characters

     SLPFindAttrs(3SLP)
           return service attributes

     SLPFindScopes(3SLP)
           return list of configured and discovered scopes

     SLPFindSrvTypes(3SLP)
           find service types

     SLPFindSrvs(3SLP)
           return service URLs

     SLPFree(3SLP)
           frees memory

     SLPGetProperty(3SLP)
           return SLP configuration property

     SLPGetRefreshInterval(3SLP)
           return the maximum allowed refresh interval

     SLPOpen(3SLP)
           open an SLP handle

     SLPParseSrvURL(3SLP)
           parse service URL

     SLPReg(3SLP)
           register an SLP advertisement

     SLPSetProperty(3SLP)
           set an SLP configuration property

     SLPUnescape(3SLP)
           translate escaped characters into UTF-8

     SSAAgentIsAlive(3SNMP)
           Sun Solstice Enterprise Agent registration and commun-
           ication helper functions

     SSAGetTrapPort(3SNMP)
           See SSAAgentIsAlive(3SNMP)

     SSAOidCmp(3SNMP)
           Sun Solstice Enterprise Agent OID helper functions

     SSAOidCpy(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidDup(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidFree(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidInit(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidNew(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidStrToOid(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidString(3SNMP)
           See SSAOidCmp(3SNMP)

     SSAOidZero(3SNMP)
           See SSAOidCmp(3SNMP)

     SSARegSubagent(3SNMP)
           See SSAAgentIsAlive(3SNMP)

     SSARegSubtable(3SNMP)
           See SSAAgentIsAlive(3SNMP)

     SSARegSubtree(3SNMP)
           See SSAAgentIsAlive(3SNMP)

     SSASendTrap(3SNMP)
           See SSAAgentIsAlive(3SNMP)

     SSAStringCpy(3SNMP)
           Sun Solstice Enterprise Agent string helper functions

     SSAStringInit(3SNMP)
           See SSAStringCpy(3SNMP)

     SSAStringToChar(3SNMP)
           See SSAStringCpy(3SNMP)

     SSAStringZero(3SNMP)
           See SSAStringCpy(3SNMP)

     SSASubagentOpen(3SNMP)
           See SSAAgentIsAlive(3SNMP)

     TNF_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     TNF_DECLARE_RECORD(3TNF)
           TNF type extension interface for probes

     TNF_DEFINE_RECORD_1(3TNF)
           See TNF_DECLARE_RECORD(3TNF)

     TNF_DEFINE_RECORD_2(3TNF)
           See TNF_DECLARE_RECORD(3TNF)

     TNF_DEFINE_RECORD_3(3TNF)
           See TNF_DECLARE_RECORD(3TNF)

     TNF_DEFINE_RECORD_4(3TNF)
           See TNF_DECLARE_RECORD(3TNF)

     TNF_DEFINE_RECORD_5(3TNF)
           See TNF_DECLARE_RECORD(3TNF)

     TNF_PROBE(3TNF)
           probe insertion interface

     TNF_PROBE_0(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_0_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_1(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_1_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_2(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_2_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_3(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_3_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_4(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_4_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_5(3TNF)
           See TNF_PROBE(3TNF)

     TNF_PROBE_5_DEBUG(3TNF)
           See TNF_PROBE(3TNF)

     Task(3PERL)
           Perl interface to Tasks

     WIFEXITED(3UCB)
           See wait(3UCB)

     WIFSIGNALED(3UCB)
           See wait(3UCB)

     WIFSTOPPED(3UCB)
           See wait(3UCB)

     _NOTE(3EXT)
           See NOTE(3EXT)

     __fbufsize(3C)
           interfaces to stdio FILE structure

     __flbf(3C)
           See __fbufsize(3C)

     __fpending(3C)
           See __fbufsize(3C)

     __fpurge(3C)
           See __fbufsize(3C)

     __freadable(3C)
           See __fbufsize(3C)

     __freading(3C)
           See __fbufsize(3C)

     __fsetlocking(3C)
           See __fbufsize(3C)

     __fwritable(3C)
           See __fbufsize(3C)

     __fwriting(3C)
           See __fbufsize(3C)

     _edata(3C)
           See end(3C)

     _end(3C)
           See end(3C)

     _etext(3C)
           See end(3C)

     _exithandle(3C)
           See exit(3C)

     _flushlbf(3C)
           See __fbufsize(3C)

     _longjmp(3C)
           non-local goto

     _longjmp(3UCB)
           See setjmp(3UCB)

     _setjmp(3C)
           See _longjmp(3C)

     _setjmp(3UCB)
           See setjmp(3UCB)

     _stack_grow(3C)
           express an intention to extend the stack

     _tolower(3C)
           transliterate upper-case characters to lower-case

     _toupper(3C)
           transliterate lower-case characters to upper-case

     a64l(3C)
           convert between long integer and base-64 ASCII string

     abort(3C)
           terminate the process abnormally

     abs(3C)
           return absolute value of integer

     accept(3SOCKET)
           accept a connection on a socket

     accept(3XNET)
           accept a new connection on a socket

     acct(3HEAD)
           per-process accounting file format

     aclcheck(3SEC)
           check the validity of an ACL

     aclfrommode(3SEC)
           See acltomode(3SEC)

     aclfromtext(3SEC)
           See acltotext(3SEC)

     aclsort(3SEC)
           sort an ACL

     acltomode(3SEC)
           convert an ACL to or from permission bits

     acltotext(3SEC)
           convert internal representation to  or  from  external
           representation

     acos(3M)
           arc cosine function

     acosh(3M)
           inverse hyperbolic functions

     add_wch(3XCURSES)
           add a complex character (with   rendition) to a window

     add_wchnstr(3XCURSES)
           copy a string of complex characters (with  renditions)
           to a window

     add_wchstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     addch(3CURSES)
           See curs_addch(3CURSES)

     addch(3XCURSES)
           add a character (with rendition) to a window

     addchnstr(3CURSES)
           See curs_addchstr(3CURSES)

     addchnstr(3XCURSES)
           See addchstr(3XCURSES)

     addchstr(3CURSES)
           See curs_addchstr(3CURSES)

     addchstr(3XCURSES)
           copy a character string (with renditions) to a window

     addnstr(3CURSES)
           See curs_addstr(3CURSES)

     addnstr(3XCURSES)
           add a multi-byte character string (without  rendition)
           to a window

     addnwstr(3CURSES)
           See curs_addwstr(3CURSES)

     addnwstr(3XCURSES)
           add a wide-character string to a window

     addsev(3C)
           define additional severities

     addseverity(3C)
           build a list of severity levels for an application for
           use with fmtmsg

     addstr(3CURSES)
           See curs_addstr(3CURSES)

     addstr(3XCURSES)
           See addnstr(3XCURSES)

     addwch(3CURSES)
           See curs_addwch(3CURSES)

     addwchnstr(3CURSES)
           See curs_addwchstr(3CURSES)

     addwchstr(3CURSES)
           See curs_addwchstr(3CURSES)

     addwstr(3CURSES)
           See curs_addwstr(3CURSES)

     addwstr(3XCURSES)
           See addnwstr(3XCURSES)

     adjcurspos(3CURSES)
           See curs_alecompat(3CURSES)

     advance(3GEN)
           See regexpr(3GEN)

     aio(3HEAD)
           asynchronous input and output

     aio_cancel(3RT)
           cancel asynchronous I/O request

     aio_error(3RT)
           retrieve errors status for an asynchronous I/O  opera-
           tion

     aio_fsync(3RT)
           asynchronous file synchronization

     aio_read(3RT)
           asynchronous read from a file

     aio_return(3RT)
           retrieve return status of an asynchronous  I/O  opera-
           tion

     aio_suspend(3RT)
           wait for asynchronous I/O request

     aio_waitn(3RT)
           wait for completion of asynchronous I/O operations

     aio_write(3RT)
           asynchronous write to a file

     aiocancel(3AIO)
           cancel an asynchronous operation

     aioread(3AIO)
           read or write asynchronous I/O operations

     aiowait(3AIO)
           wait for completion of asynchronous I/O operation

     aiowrite(3AIO)
           See aioread(3AIO)

     alloca(3C)
           See malloc(3C)

     alphasort(3UCB)
           See scandir(3UCB)

     ar(3HEAD)
           archive file format

     arc(3PLOT)
           See plot(3PLOT)

     ascftime(3C)
           See strftime(3C)

     asctime(3C)
           See ctime(3C)

     asctime_r(3C)
           See ctime(3C)

     asin(3M)
           arc sine function

     asinh(3M)
           See acosh(3M)

     assert(3C)
           verify program assertion

     atan(3M)
           arc tangent function

     atan2(3M)
           arc tangent function

     atanh(3M)
           See acosh(3M)

     atexit(3C)
           register a function to run at process  termination  or
           object unloading

     atof(3C)
           See strtod(3C)

     atoi(3C)
           See strtol(3C)

     atol(3C)
           See strtol(3C)

     atoll(3C)
           See strtol(3C)

     attr_get(3XCURSES)
           control window attributes

     attr_off(3XCURSES)
           See attr_get(3XCURSES)

     attr_on(3XCURSES)
           See attr_get(3XCURSES)

     attr_set(3XCURSES)
           See attr_get(3XCURSES)

     attroff(3CURSES)
           See curs_attr(3CURSES)

     attroff(3XCURSES)
           change foreground window attributes

     attron(3CURSES)
           See curs_attr(3CURSES)

     attron(3XCURSES)
           See attroff(3XCURSES)

     attropen(3C)
           open a file

     attrset(3CURSES)
           See curs_attr(3CURSES)

     attrset(3XCURSES)
           See attroff(3XCURSES)

     au_close(3BSM)
           See au_open(3BSM)

     au_open(3BSM)
           construct and write audit records

     au_preselect(3BSM)
           preselect an audit event

     au_to(3BSM)
           create audit record tokens

     au_to_arg(3BSM)
           See au_to(3BSM)

     au_to_arg32(3BSM)
           See au_to(3BSM)

     au_to_arg64(3BSM)
           See au_to(3BSM)

     au_to_attr(3BSM)
           See au_to(3BSM)

     au_to_cmd(3BSM)
           See au_to(3BSM)

     au_to_data(3BSM)
           See au_to(3BSM)

     au_to_groups(3BSM)
           See au_to(3BSM)

     au_to_in_addr(3BSM)
           See au_to(3BSM)

     au_to_ipc(3BSM)
           See au_to(3BSM)

     au_to_iport(3BSM)
           See au_to(3BSM)

     au_to_me(3BSM)
           See au_to(3BSM)

     au_to_newgroups(3BSM)
           See au_to(3BSM)

     au_to_opaque(3BSM)
           See au_to(3BSM)

     au_to_path(3BSM)
           See au_to(3BSM)

     au_to_process(3BSM)
           See au_to(3BSM)

     au_to_process_ex(3BSM)
           See au_to(3BSM)

     au_to_return(3BSM)
           See au_to(3BSM)

     au_to_return32(3BSM)
           See au_to(3BSM)

     au_to_return64(3BSM)
           See au_to(3BSM)

     au_to_socket(3BSM)
           See au_to(3BSM)

     au_to_subject(3BSM)
           See au_to(3BSM)

     au_to_subject_ex(3BSM)
           See au_to(3BSM)

     au_to_text(3BSM)
           See au_to(3BSM)

     au_user_mask(3BSM)
           get user's binary preselection mask

     au_write(3BSM)
           See au_open(3BSM)

     auth_destroy(3NSL)
           See rpc_clnt_auth(3NSL)

     authdes_create(3NSL)
           See rpc_soc(3NSL)

     authdes_getucred(3NSL)
           See secure_rpc(3NSL)

     authdes_seccreate(3NSL)
           See secure_rpc(3NSL)

     authnone_create(3NSL)
           See rpc_clnt_auth(3NSL)

     authsys_create(3NSL)
           See rpc_clnt_auth(3NSL)

     authsys_create_default(3NSL)
           See rpc_clnt_auth(3NSL)

     authunix_create(3NSL)
           See rpc_soc(3NSL)

     authunix_create_default(3NSL)
           See rpc_soc(3NSL)

     basename(3C)
           return the last element of a path name

     baudrate(3CURSES)
           See curs_termattrs(3CURSES)

     baudrate(3XCURSES)
           return terminal baud rate

     bcmp(3C)
           See bstring(3C)

     bcopy(3C)
           See bstring(3C)

     beep(3CURSES)
           See curs_beep(3CURSES)

     beep(3XCURSES)
           activate audio-visual alarm

     ber_alloc(3LDAP)
           See ber_encode(3LDAP)

     ber_alloc_t(3LDAP)
           See ber_decode(3LDAP)

     ber_bvdup(3LDAP)
           See ber_decode(3LDAP)

     ber_bvecfree(3LDAP)
           See ber_decode(3LDAP)

     ber_bvfree(3LDAP)
           See ber_decode(3LDAP)

     ber_decode(3LDAP)
           Basic Encoding Rules library decoding functions

     ber_encode(3LDAP)
           simplified Basic Encoding Rules library encoding func-
           tions

     ber_first_element(3LDAP)
           See ber_decode(3LDAP)

     ber_flatten(3LDAP)
           See ber_decode(3LDAP)

     ber_free(3LDAP)
           See ber_decode(3LDAP)

     ber_get_bitstring(3LDAP)
           See ber_decode(3LDAP)

     ber_get_boolean(3LDAP)
           See ber_decode(3LDAP)

     ber_get_int(3LDAP)
           See ber_decode(3LDAP)

     ber_get_next(3LDAP)
           See ber_decode(3LDAP)

     ber_get_null(3LDAP)
           See ber_decode(3LDAP)

     ber_get_stringa(3LDAP)
           See ber_decode(3LDAP)

     ber_get_stringal(3LDAP)
           See ber_decode(3LDAP)

     ber_get_stringb(3LDAP)
           See ber_decode(3LDAP)

     ber_init(3LDAP)
           See ber_decode(3LDAP)

     ber_next_element(3LDAP)
           See ber_decode(3LDAP)

     ber_peek_tag(3LDAP)
           See ber_decode(3LDAP)

     ber_printf(3LDAP)
           See ber_encode(3LDAP)

     ber_put_bitstring(3LDAP)
           See ber_encode(3LDAP)

     ber_put_boolean(3LDAP)
           See ber_encode(3LDAP)

     ber_put_int(3LDAP)
           See ber_encode(3LDAP)

     ber_put_null(3LDAP)
           See ber_encode(3LDAP)

     ber_put_ostring(3LDAP)
           See ber_encode(3LDAP)

     ber_put_seq(3LDAP)
           See ber_encode(3LDAP)

     ber_put_set(3LDAP)
           See ber_encode(3LDAP)

     ber_put_string(3LDAP)
           See ber_encode(3LDAP)

     ber_scanf(3LDAP)
           See ber_decode(3LDAP)

     ber_skiptag(3LDAP)
           See ber_decode(3LDAP)

     ber_start_seq(3LDAP)
           See ber_encode(3LDAP)

     ber_start_set(3LDAP)
           See ber_encode(3LDAP)

     bgets(3GEN)
           read stream up to next delimiter

     bind(3SOCKET)
           bind a name to a socket

     bind(3XNET)
           bind a name to a socket

     bind_textdomain_codeset(3C)
           See gettext(3C)

     bindtextdomain(3C)
           See gettext(3C)

     bkgd(3CURSES)
           See curs_bkgd(3CURSES)

     bkgd(3XCURSES)
           set or get the background character (and rendition) of
           window

     bkgdset(3CURSES)
           See curs_bkgd(3CURSES)

     bkgdset(3XCURSES)
           See bkgd(3XCURSES)

     bkgrnd(3XCURSES)
           set or get the background character (and rendition) of
           window using a complex character

     bkgrndset(3XCURSES)
           See bkgrnd(3XCURSES)

     border(3CURSES)
           See curs_border(3CURSES)

     border(3XCURSES)
           add a single-byte border to a window

     border_set(3XCURSES)
           use complex characters (and renditions) to draw  bord-
           ers

     bottom_panel(3CURSES)
           See panel_top(3CURSES)

     box(3CURSES)
           See curs_border(3CURSES)

     box(3PLOT)
           See plot(3PLOT)

     box(3XCURSES)
           See border(3XCURSES)

     box_set(3XCURSES)
           See border_set(3XCURSES)

     bsd_signal(3C)
           simplified signal facilities

     bsdmalloc(3MALLOC)
           memory allocator

     bsearch(3C)
           binary search a sorted table

     bstring(3C)
           bit and byte string operations

     btowc(3C)
           single-byte to wide-character conversion

     bufsplit(3GEN)
           split buffer into fields

     byteorder(3SOCKET)
           convert values between host and network byte order

     bzero(3C)
           See bstring(3C)

     calloc(3C)
           See malloc(3C)

     calloc(3MALLOC)
           See malloc(3MALLOC)

     callrpc(3NSL)
           See rpc_soc(3NSL)

     can_change_color(3CURSES)
           See curs_color(3CURSES)

     can_change_color(3XCURSES)
           manipulate color information

     cancellation(3THR)
           overview of concepts related to POSIX thread cancella-
           tion

     catclose(3C)
           See catopen(3C)

     catgets(3C)
           read a program message

     catopen(3C)
           open/close a message catalog

     cbreak(3CURSES)
           See curs_inopts(3CURSES)

     cbreak(3XCURSES)
           set input mode controls

     cbrt(3M)
           cube root function

     ceil(3M)
           ceiling value function

     cfgetispeed(3C)
           get input and output baud rate

     cfgetospeed(3C)
           See cfgetispeed(3C)

     cfree(3MALLOC)
           See watchmalloc(3MALLOC)

     cfsetispeed(3C)
           set input and output baud rate

     cfsetospeed(3C)
           See cfsetispeed(3C)

     cftime(3C)
           See strftime(3C)

     chgat(3XCURSES)
           change the rendition of characters in a window

     chkauthattr(3SECDB)
           See getauthattr(3SECDB)

     circle(3PLOT)
           See plot(3PLOT)

     cldap_close(3LDAP)
           dispose of connectionless LDAP pointer

     cldap_open(3LDAP)
           LDAP connectionless communication preparation

     cldap_search_s(3LDAP)
           connectionless LDAP search

     cldap_setretryinfo(3LDAP)
           set connectionless LDAP request retransmission parame-
           ters

     clear(3CURSES)
           See curs_clear(3CURSES)

     clear(3XCURSES)
           clear a window

     clearerr(3C)
           See ferror(3C)

     clearok(3CURSES)
           See curs_outopts(3CURSES)

     clearok(3XCURSES)
           terminal output control functions

     clnt_broadcast(3NSL)
           See rpc_soc(3NSL)

     clnt_call(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_control(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_create(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_create_timed(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_create_vers(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_create_vers_timed(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_destroy(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_dg_create(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_door_create(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_freeres(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_geterr(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_pcreateerror(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_perrno(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_perror(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_raw_create(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_send(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_spcreateerror(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_sperrno(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_sperror(3NSL)
           See rpc_clnt_calls(3NSL)

     clnt_tli_create(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_tp_create(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_tp_create_timed(3NSL)
           See rpc_clnt_create(3NSL)

     clnt_vc_create(3NSL)
           See rpc_clnt_create(3NSL)

     clntraw_create(3NSL)
           See rpc_soc(3NSL)

     clnttcp_create(3NSL)
           See rpc_soc(3NSL)

     clntudp_bufcreate(3NSL)
           See rpc_soc(3NSL)

     clntudp_create(3NSL)
           See rpc_soc(3NSL)

     clock(3C)
           report CPU time used

     clock_getres(3RT)
           See clock_settime(3RT)

     clock_gettime(3RT)
           See clock_settime(3RT)

     clock_settime(3RT)
           high-resolution clock operations

     closedir(3C)
           close a directory stream

     closefrom(3C)
           close or iterate over open file descriptors

     closelog(3C)
           See syslog(3C)

     closepl(3PLOT)
           See plot(3PLOT)

     closevt(3PLOT)
           See plot(3PLOT)

     clrtobot(3CURSES)
           See curs_clear(3CURSES)

     clrtobot(3XCURSES)
           clear to the end of a window

     clrtoeol(3CURSES)
           See curs_clear(3CURSES)

     clrtoeol(3XCURSES)
           clear to the end of a line

     color_content(3CURSES)
           See curs_color(3CURSES)

     color_content(3XCURSES)
           See can_change_color(3XCURSES)

     color_set(3XCURSES)
           See attr_get(3XCURSES)

     compile(3GEN)
           See regexpr(3GEN)

     cond_broadcast(3THR)
           See cond_init(3THR)

     cond_destroy(3THR)
           See cond_init(3THR)

     cond_init(3THR)
           condition variables

     cond_reltimedwait(3THR)
           See cond_init(3THR)

     cond_signal(3THR)
           See cond_init(3THR)

     cond_timedwait(3THR)
           See cond_init(3THR)

     cond_wait(3THR)
           See cond_init(3THR)

     condition(3THR)
           concepts related to condition variables

     config_admin(3CFGADM)
           configuration administration interface

     config_ap_id_cmp(3CFGADM)
           See config_admin(3CFGADM)

     config_change_state(3CFGADM)
           See config_admin(3CFGADM)

     config_list(3CFGADM)
           See config_admin(3CFGADM)

     config_list_ext(3CFGADM)
           See config_admin(3CFGADM)

     config_private_func(3CFGADM)
           See config_admin(3CFGADM)

     config_stat(3CFGADM)
           See config_admin(3CFGADM)

     config_strerror(3CFGADM)
           See config_admin(3CFGADM)

     config_test(3CFGADM)
           See config_admin(3CFGADM)

     config_unload_libs(3CFGADM)
           See config_admin(3CFGADM)

     confstr(3C)
           get configurable variables

     connect(3SOCKET)
           initiate a connection on a socket

     connect(3XNET)
           connect a socket

     cont(3PLOT)
           See plot(3PLOT)

     copylist(3GEN)
           copy a file into memory

     copysign(3M)
           return magnitude of first argument and sign of  second
           argument

     copywin(3CURSES)
           See curs_overlay(3CURSES)

     copywin(3XCURSES)
           overlay or overwrite any portion of window

     cos(3M)
           cosine function

     cosh(3M)
           hyperbolic cosine function

     cpc(3CPC)
           hardware performance counters

     cpc_access(3CPC)
           test access CPU performance counters

     cpc_bind_event(3CPC)
           use CPU performance counters on lwps

     cpc_count_sys_events(3CPC)
           See cpc_count_usr_events(3CPC)

     cpc_count_usr_events(3CPC)
           enable and disable performance counters

     cpc_event(3CPC)
           data structure to describe CPU performance counters

     cpc_event_accum(3CPC)
           See cpc_event_diff(3CPC)

     cpc_event_diff(3CPC)
           simple difference and accumulate operations

     cpc_eventtostr(3CPC)
           See cpc_strtoevent(3CPC)

     cpc_getcciname(3CPC)
           See cpc_getcpuver(3CPC)

     cpc_getcpuref(3CPC)
           See cpc_getcpuver(3CPC)

     cpc_getcpuver(3CPC)
           determine CPU performance counter configuration

     cpc_getnpic(3CPC)
           See cpc_getcpuver(3CPC)

     cpc_getusage(3CPC)
           See cpc_getcpuver(3CPC)

     cpc_pctx_bind_event(3CPC)
           access CPU performance counters in other processes

     cpc_pctx_invalidate(3CPC)
           See cpc_pctx_bind_event(3CPC)

     cpc_pctx_rele(3CPC)
           See cpc_pctx_bind_event(3CPC)

     cpc_pctx_take_sample(3CPC)
           See cpc_pctx_bind_event(3CPC)

     cpc_rele(3CPC)
           See cpc_bind_event(3CPC)

     cpc_seterrfn(3CPC)
           control libcpc error reporting

     cpc_shared_bind_event(3CPC)
           See cpc_shared_open(3CPC)

     cpc_shared_close(3CPC)
           See cpc_shared_open(3CPC)

     cpc_shared_open(3CPC)
           use CPU performance counters on processors

     cpc_shared_rele(3CPC)
           See cpc_shared_open(3CPC)

     cpc_shared_take_sample(3CPC)
           See cpc_shared_open(3CPC)

     cpc_strtoevent(3CPC)
           translate strings to and from events

     cpc_take_sample(3CPC)
           See cpc_bind_event(3CPC)

     cpc_version(3CPC)
           coordinate CPC library and application versions

     cpc_walk_names(3CPC)
           See cpc_getcpuver(3CPC)

     cplus_demangle(3EXT)
           See demangle(3EXT)

     crypt(3C)
           string encoding function

     crypt_genhash_impl(3C)
           generate encrypted password

     crypt_gensalt(3C)
           generate salt string for string encoding

     crypt_gensalt_impl(3C)
           generate salt for password encryption

     cset(3C)
           get information on EUC codesets

     csetcol(3C)
           See cset(3C)

     csetlen(3C)
           See cset(3C)

     csetno(3C)
           See cset(3C)

     ctermid(3C)
           generate path name for controlling terminal

     ctermid_r(3C)
           See ctermid(3C)

     ctime(3C)
           convert date and time to string

     ctime_r(3C)
           See ctime(3C)

     ctype(3C)
           character handling

     cur_term(3XCURSES)
           current terminal information

     current_field(3CURSES)
           See form_page(3CURSES)

     current_item(3CURSES)
           See menu_item_current(3CURSES)

     curs_addch(3CURSES)
           add a character (with attributes) to a  curses  window
           and advance cursor

     curs_addchstr(3CURSES)
           add string of characters and attributes  to  a  curses
           window

     curs_addstr(3CURSES)
           add a string of characters  to  a  curses  window  and
           advance cursor

     curs_addwch(3CURSES)
           add a wchar_t character (with attributes) to a  curses
           window and advance cursor

     curs_addwchstr(3CURSES)
           add string of wchar_t characters (and attributes) to a
           curses window

     curs_addwstr(3CURSES)
           add a string of wchar_t characters to a curses  window
           and advance cursor

     curs_alecompat(3CURSES)
           these functions are added to ALE  curses  library  for
           moving the cursor by character.

     curs_attr(3CURSES)
           curses character and window attribute control routines

     curs_beep(3CURSES)
           curses bell and screen flash routines

     curs_bkgd(3CURSES)
           curses window background manipulation routines

     curs_border(3CURSES)
           create curses borders, horizontal and vertical lines

     curs_clear(3CURSES)
           clear all or part of a curses window

     curs_color(3CURSES)
           curses color manipulation routines

     curs_delch(3CURSES)
           delete character under cursor in a curses window

     curs_deleteln(3CURSES)
           delete and insert lines in a curses window

     curs_getch(3CURSES)
           get (or push back)  characters  from  curses  terminal
           keyboard

     curs_getstr(3CURSES)
           get character strings from curses terminal keyboard

     curs_getwch(3CURSES)
           get (or push back) wchar_t characters from curses ter-
           minal keyboard

     curs_getwstr(3CURSES)
           get wchar_t character  strings  from  curses  terminal
           keyboard

     curs_getyx(3CURSES)
           get curses cursor and window coordinates

     curs_inch(3CURSES)
           get a character and its attributes from a curses  win-
           dow

     curs_inchstr(3CURSES)
           get a string of characters  (and  attributes)  from  a
           curses window

     curs_initscr(3CURSES)
           curses screen initialization and manipulation routines

     curs_inopts(3CURSES)
           curses terminal input option control routines

     curs_insch(3CURSES)
           insert a character before the character under the cur-
           sor in a curses window

     curs_insstr(3CURSES)
           insert string before character under the cursor  in  a
           curses window

     curs_instr(3CURSES)
           get a string of characters from a curses window

     curs_inswch(3CURSES)
           insert a wchar_t character before the character  under
           the cursor in a curses window

     curs_inswstr(3CURSES)
           insert wchar_t string before character under the  cur-
           sor in a curses window

     curs_inwch(3CURSES)
           get a wchar_t character  and  its  attributes  from  a
           curses window

     curs_inwchstr(3CURSES)
           get a string of wchar_t  characters  (and  attributes)
           from a curses window

     curs_inwstr(3CURSES)
           get a string of wchar_t characters from a curses  win-
           dow

     curs_kernel(3CURSES)
           low-level curses routines

     curs_move(3CURSES)
           move curses window cursor

     curs_outopts(3CURSES)
           curses terminal output option control routines

     curs_overlay(3CURSES)
           overlap and manipulate overlapped curses windows

     curs_pad(3CURSES)
           create and display curses pads

     curs_printw(3CURSES)
           print formatted output in curses windows

     curs_refresh(3CURSES)
           refresh curses windows and lines

     curs_scanw(3CURSES)
           convert formatted input from a curses widow

     curs_scr_dump(3CURSES)
           read (write) a curses screen from (to) a file

     curs_scroll(3CURSES)
           scroll a curses window

     curs_set(3CURSES)
           See curs_kernel(3CURSES)

     curs_set(3XCURSES)
           set visibility of cursor

     curs_slk(3CURSES)
           curses soft label routines

     curs_termattrs(3CURSES)
           curses environment query routines

     curs_termcap(3CURSES)
           curses interfaces (emulated) to the termcap library

     curs_terminfo(3CURSES)
           curses interfaces to terminfo database

     curs_touch(3CURSES)
           curses refresh control routines

     curs_util(3CURSES)
           curses miscellaneous utility routines

     curs_window(3CURSES)
           create curses windows

     curscr(3XCURSES)
           current window

     curses(3CURSES)
           CRT screen handling and optimization package

     curses(3XCURSES)
           introduction and overview of X/Open Curses

     cuserid(3C)
           get character login name of the user

     data_ahead(3CURSES)
           See form_data(3CURSES)

     data_behind(3CURSES)
           See form_data(3CURSES)

     dbm(3UCB)
           data base subroutines

     dbm_clearerr(3C)
           See ndbm(3C)

     dbm_close(3C)
           See ndbm(3C)

     dbm_delete(3C)
           See ndbm(3C)

     dbm_error(3C)
           See ndbm(3C)

     dbm_fetch(3C)
           See ndbm(3C)

     dbm_firstkey(3C)
           See ndbm(3C)

     dbm_nextkey(3C)
           See ndbm(3C)

     dbm_open(3C)
           See ndbm(3C)

     dbm_store(3C)
           See ndbm(3C)

     dbmclose(3UCB)
           See dbm(3UCB)

     dbminit(3UCB)
           See dbm(3UCB)

     dcgettext(3C)
           See gettext(3C)

     dcngettext(3C)
           See gettext(3C)

     decimal_to_double(3C)
           See decimal_to_floating(3C)

     decimal_to_extended(3C)
           See decimal_to_floating(3C)

     decimal_to_floating(3C)
           convert decimal record to floating-point value

     decimal_to_quadruple(3C)
           See decimal_to_floating(3C)

     decimal_to_single(3C)
           See decimal_to_floating(3C)

     def_prog_mode(3CURSES)
           See curs_kernel(3CURSES)

     def_prog_mode(3XCURSES)
           save/restore terminal modes

     def_shell_mode(3CURSES)
           See curs_kernel(3CURSES)

     def_shell_mode(3XCURSES)
           See def_prog_mode(3XCURSES)

     del_curterm(3CURSES)
           See curs_terminfo(3CURSES)

     del_curterm(3XCURSES)
           interfaces to the terminfo database

     del_panel(3CURSES)
           See panel_new(3CURSES)

     delay_output(3CURSES)
           See curs_util(3CURSES)

     delay_output(3XCURSES)
           delays output

     delch(3CURSES)
           See curs_delch(3CURSES)

     delch(3XCURSES)
           remove a character

     delete(3UCB)
           See dbm(3UCB)

     deleteln(3CURSES)
           See curs_deleteln(3CURSES)

     deleteln(3XCURSES)
           remove a line

     delscreen(3CURSES)
           See curs_initscr(3CURSES)

     delscreen(3XCURSES)
           free space associated with the SCREEN data structure

     delwin(3CURSES)
           See curs_window(3CURSES)

     delwin(3XCURSES)
           delete a window

     demangle(3EXT)
           decode a C++ encoded symbol name

     derwin(3CURSES)
           See curs_window(3CURSES)

     derwin(3XCURSES)
           create a new window or subwindow

     devid_compare(3DEVID)
           See devid_get(3DEVID)

     devid_deviceid_to_nmlist(3DEVID)
           See devid_get(3DEVID)

     devid_free(3DEVID)
           See devid_get(3DEVID)

     devid_free_nmlist(3DEVID)
           See devid_get(3DEVID)

     devid_get(3DEVID)
           device ID interfaces for user applications

     devid_get_minor_name(3DEVID)
           See devid_get(3DEVID)

     devid_sizeof(3DEVID)
           See devid_get(3DEVID)

     devid_str_decode(3DEVID)
           See devid_get(3DEVID)

     devid_str_encode(3DEVID)
           See devid_get(3DEVID)

     devid_str_free(3DEVID)
           See devid_get(3DEVID)

     devid_valid(3DEVID)
           See devid_get(3DEVID)

     dgettext(3C)
           See gettext(3C)

     di_binding_name(3DEVINFO)
           return libdevinfo node information

     di_bus_addr(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_child_node(3DEVINFO)
           libdevinfo node traversal functions

     di_compatible_names(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_devfs_path(3DEVINFO)
           generate and free physical path names

     di_devfs_path_free(3DEVINFO)
           See di_devfs_path(3DEVINFO)

     di_devid(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_driver_name(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_driver_ops(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_drv_first_node(3DEVINFO)
           See di_child_node(3DEVINFO)

     di_drv_next_node(3DEVINFO)
           See di_child_node(3DEVINFO)

     di_fini(3DEVINFO)
           See di_init(3DEVINFO)

     di_init(3DEVINFO)
           create and destroy a snapshot of kernel device tree

     di_instance(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_minor_devt(3DEVINFO)
           return libdevinfo minor node information

     di_minor_name(3DEVINFO)
           See di_minor_devt(3DEVINFO)

     di_minor_next(3DEVINFO)
           libdevinfo minor node traversal functions

     di_minor_nodetype(3DEVINFO)
           See di_minor_devt(3DEVINFO)

     di_minor_spectype(3DEVINFO)
           See di_minor_devt(3DEVINFO)

     di_node_name(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_nodeid(3DEVINFO)
           See di_binding_name(3DEVINFO)

     di_parent_node(3DEVINFO)
           See di_child_node(3DEVINFO)

     di_prom_fini(3DEVINFO)
           See di_prom_init(3DEVINFO)

     di_prom_init(3DEVINFO)
           create and destroy a handle to the PROM device  infor-
           mation

     di_prom_prop_data(3DEVINFO)
           access PROM device information

     di_prom_prop_lookup_bytes(3DEVINFO)
           search for a PROM property

     di_prom_prop_lookup_ints(3DEVINFO)
           See di_prom_prop_lookup_bytes(3DEVINFO)

     di_prom_prop_lookup_strings(3DEVINFO)
           See di_prom_prop_lookup_bytes(3DEVINFO)

     di_prom_prop_name(3DEVINFO)
           See di_prom_prop_data(3DEVINFO)

     di_prom_prop_next(3DEVINFO)
           See di_prom_prop_data(3DEVINFO)

     di_prop_bytes(3DEVINFO)
           access property values and attributes

     di_prop_devt(3DEVINFO)
           See di_prop_bytes(3DEVINFO)

     di_prop_int64(3DEVINFO)
           See di_prop_bytes(3DEVINFO)

     di_prop_ints(3DEVINFO)
           See di_prop_bytes(3DEVINFO)

     di_prop_lookup_bytes(3DEVINFO)
           search for a property

     di_prop_lookup_int64(3DEVINFO)
           See di_prop_lookup_bytes(3DEVINFO)

     di_prop_lookup_ints(3DEVINFO)
           See di_prop_lookup_bytes(3DEVINFO)

     di_prop_lookup_strings(3DEVINFO)
           See di_prop_lookup_bytes(3DEVINFO)

     di_prop_name(3DEVINFO)
           See di_prop_bytes(3DEVINFO)

     di_prop_next(3DEVINFO)
           libdevinfo property traversal function

     di_prop_strings(3DEVINFO)
           See di_prop_bytes(3DEVINFO)

     di_prop_type(3DEVINFO)
           See di_prop_bytes(3DEVINFO)

     di_sibling_node(3DEVINFO)
           See di_child_node(3DEVINFO)

     di_walk_minor(3DEVINFO)
           traverse libdevinfo minor nodes

     di_walk_node(3DEVINFO)
           traverse libdevinfo device nodes

     dial(3NSL)
           establish an outgoing terminal line connection

     difftime(3C)
           computes the difference between two calendar times

     directio(3C)
           provide advice to file system

     dirent(3HEAD)
           file system independent directory entry

     dirname(3C)
           report the parent directory name of a file path name

     div(3C)
           compute the quotient and remainder

     dladdr(3DL)
           translate address to symbolic information

     dladdr1(3DL)
           See dladdr(3DL)

     dlclose(3DL)
           close a shared object

     dldump(3DL)
           create a new file from a dynamic object  component  of
           the calling process

     dlerror(3DL)
           get diagnostic information

     dlinfo(3DL)
           dynamic load information

     dlmopen(3DL)
           See dlopen(3DL)

     dlopen(3DL)
           gain access to an executable object file

     dlsym(3DL)
           get the address of a symbol in a shared object or exe-
           cutable

     dmi_error(3DMI)
           print error in string form

     dn_comp(3RESOLV)
           See resolver(3RESOLV)

     dn_expand(3RESOLV)
           See resolver(3RESOLV)

     dngettext(3C)
           See gettext(3C)

     doconfig(3NSL)
           execute a configuration script

     door_bind(3DOOR)
           bind or unbind the current thread with the door server
           pool

     door_call(3DOOR)
           invoke the function associated with a door descriptor

     door_create(3DOOR)
           create a door descriptor

     door_cred(3DOOR)
           return  credential  information  associated  with  the
           client

     door_info(3DOOR)
           return information associated with a door descriptor

     door_return(3DOOR)
           return from a door invocation

     door_revoke(3DOOR)
           revoke access to a door descriptor

     door_server_create(3DOOR)
           specify an alternative  door  server  thread  creation
           function

     door_unbind(3DOOR)
           See door_bind(3DOOR)

     double_to_decimal(3C)
           See floating_to_decimal(3C)

     doupdate(3CURSES)
           See curs_refresh(3CURSES)

     doupdate(3XCURSES)
           refresh windows and lines

     drand48(3C)
           generate uniformly distributed pseudo-random numbers

     dup2(3C)
           duplicate an open file descriptor

     dup_field(3CURSES)
           See form_field_new(3CURSES)

     dupwin(3CURSES)
           See curs_window(3CURSES)

     dupwin(3XCURSES)
           duplicate a window

     dynamic_field_info(3CURSES)
           See form_field_info(3CURSES)

     ea_alloc(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_attach_to_group(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_attach_to_object(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_close(3EXACCT)
           See ea_open(3EXACCT)

     ea_copy_object(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_copy_object_tree(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_error(3EXACCT)
           error interface to extended accounting library

     ea_free(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_free_item(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_free_object(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_get_creator(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_get_hostname(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_get_object(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_get_object_tree(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_match_object_catalog(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_next_object(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_open(3EXACCT)
           open or close exacct files

     ea_pack_object(3EXACCT)
           construct, read, and write extended accounting records

     ea_previous_object(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_set_group(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_set_item(3EXACCT)
           create, destroy and manipulate exacct objects

     ea_strdup(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_strfree(3EXACCT)
           See ea_set_item(3EXACCT)

     ea_unpack_object(3EXACCT)
           See ea_pack_object(3EXACCT)

     ea_write_object(3EXACCT)
           See ea_pack_object(3EXACCT)

     echo(3CURSES)
           See curs_inopts(3CURSES)

     echo(3XCURSES)
           enable/disable terminal echo

     echo_wchar(3XCURSES)
           add a complex character and refresh window

     echochar(3CURSES)
           See curs_addch(3CURSES)

     echochar(3XCURSES)
           add a single-byte character and refresh window

     echowchar(3CURSES)
           See curs_addwch(3CURSES)

     econvert(3C)
           output conversion

     ecvt(3C)
           convert floating-point number to string

     edata(3C)
           See end(3C)

     efi_alloc_and_init(3EXT)
            manipulate a disk's EFI Partition Table

     efi_alloc_and_read(3EXT)
           See efi_alloc_and_init(3EXT)

     efi_free(3EXT)
           See efi_alloc_and_init(3EXT)

     efi_write(3EXT)
           See efi_alloc_and_init(3EXT)

     elf(3ELF)
           object file access library

     elf32_checksum(3ELF)
           return checksum of elf image

     elf32_fsize(3ELF)
           return the size of an object file type

     elf32_getehdr(3ELF)
           retrieve class-dependent object file header

     elf32_getphdr(3ELF)
           retrieve class-dependent program header table

     elf32_getshdr(3ELF)
           retrieve class-dependent section header

     elf32_newehdr(3ELF)
           See elf32_getehdr(3ELF)

     elf32_newphdr(3ELF)
           See elf32_getphdr(3ELF)

     elf32_xlatetof(3ELF)
           class-dependent data translation

     elf32_xlatetom(3ELF)
           See elf32_xlatetof(3ELF)

     elf64_checksum(3ELF)
           See elf32_checksum(3ELF)

     elf64_fsize(3ELF)
           See elf32_fsize(3ELF)

     elf64_getehdr(3ELF)
           See elf32_getehdr(3ELF)

     elf64_getphdr(3ELF)
           See elf32_getphdr(3ELF)

     elf64_getshdr(3ELF)
           See elf32_getshdr(3ELF)

     elf64_newehdr(3ELF)
           See elf32_getehdr(3ELF)

     elf64_newphdr(3ELF)
           See elf32_getphdr(3ELF)

     elf64_xlatetof(3ELF)
           See elf32_xlatetof(3ELF)

     elf64_xlatetom(3ELF)
           See elf32_xlatetof(3ELF)

     elf_begin(3ELF)
           process ELF object files

     elf_cntl(3ELF)
           control an elf file descriptor

     elf_end(3ELF)
           See elf_begin(3ELF)

     elf_errmsg(3ELF)
           error handling

     elf_errno(3ELF)
           See elf_errmsg(3ELF)

     elf_fill(3ELF)
           set fill byte

     elf_flagdata(3ELF)
           manipulate flags

     elf_flagehdr(3ELF)
           See elf_flagdata(3ELF)

     elf_flagelf(3ELF)
           See elf_flagdata(3ELF)

     elf_flagphdr(3ELF)
           See elf_flagdata(3ELF)

     elf_flagscn(3ELF)
           See elf_flagdata(3ELF)

     elf_flagshdr(3ELF)
           See elf_flagdata(3ELF)

     elf_getarhdr(3ELF)
           retrieve archive member header

     elf_getarsym(3ELF)
           retrieve archive symbol table

     elf_getbase(3ELF)
           get the base offset for an object file

     elf_getdata(3ELF)
           get section data

     elf_getident(3ELF)
           retrieve file identification data

     elf_getscn(3ELF)
           get section information

     elf_hash(3ELF)
           compute hash value

     elf_kind(3ELF)
           determine file type

     elf_memory(3ELF)
           See elf_begin(3ELF)

     elf_ndxscn(3ELF)
           See elf_getscn(3ELF)

     elf_newdata(3ELF)
           See elf_getdata(3ELF)

     elf_newscn(3ELF)
           See elf_getscn(3ELF)

     elf_next(3ELF)
           See elf_begin(3ELF)

     elf_nextscn(3ELF)
           See elf_getscn(3ELF)

     elf_rand(3ELF)
           See elf_begin(3ELF)

     elf_rawdata(3ELF)
           See elf_getdata(3ELF)

     elf_rawfile(3ELF)
           retrieve uninterpreted file contents

     elf_strptr(3ELF)
           make a string pointer

     elf_update(3ELF)
           update an ELF descriptor

     elf_version(3ELF)
           coordinate ELF library and application versions

     encrypt(3C)
           encoding function

     end(3C)
           last locations in program

     endac(3BSM)
           See getacinfo(3BSM)

     endauclass(3BSM)
           See getauclassent(3BSM)

     endauevent(3BSM)
           See getauevent(3BSM)

     endauthattr(3SECDB)
           See getauthattr(3SECDB)

     endauuser(3BSM)
           See getauusernam(3BSM)

     endddent(3BSM)
           See getddent(3BSM)

     enddmapent(3BSM)
           See getdmapent(3BSM)

     endexecattr(3SECDB)
           See getexecattr(3SECDB)

     endgrent(3C)
           See getgrnam(3C)

     endhostent(3NSL)
           See gethostbyname(3NSL)

     endhostent(3XNET)
           network host database functions

     endnetconfig(3NSL)
           See getnetconfig(3NSL)

     endnetent(3SOCKET)
           See getnetbyname(3SOCKET)

     endnetent(3XNET)
           network database functions

     endnetgrent(3C)
           See getnetgrent(3C)

     endnetpath(3NSL)
           See getnetpath(3NSL)

     endprofattr(3SECDB)
           See getprofattr(3SECDB)

     endprojent(3PROJECT)
           See getprojent(3PROJECT)

     endprotoent(3SOCKET)
           See getprotobyname(3SOCKET)

     endprotoent(3XNET)
           network protocol database functions

     endpwent(3C)
           See getpwnam(3C)

     endrpcent(3NSL)
           See getrpcbyname(3NSL)

     endservent(3SOCKET)
           See getservbyname(3SOCKET)

     endservent(3XNET)
           network services database functions

     endspent(3C)
           See getspnam(3C)

     enduserattr(3SECDB)
           See getuserattr(3SECDB)

     endusershell(3C)
           See getusershell(3C)

     endutent(3C)
           See getutent(3C)

     endutxent(3C)
           See getutxent(3C)

     endwin(3CURSES)
           See curs_initscr(3CURSES)

     endwin(3XCURSES)
           restore initial terminal environment

     erand48(3C)
           See drand48(3C)

     erase(3CURSES)
           See curs_clear(3CURSES)

     erase(3PLOT)
           See plot(3PLOT)

     erase(3XCURSES)
           See clear(3XCURSES)

     erasechar(3CURSES)
           See curs_termattrs(3CURSES)

     erasechar(3XCURSES)
           return current ERASE or KILL characters

     erasewchar(3XCURSES)
           See erasechar(3XCURSES)

     erf(3M)
           error and complementary error functions

     erfc(3M)
           See erf(3M)

     errno(3C)
           See perror(3C)

     etext(3C)
           See end(3C)

     ether_aton(3SOCKET)
           See ethers(3SOCKET)

     ether_hostton(3SOCKET)
           See ethers(3SOCKET)

     ether_line(3SOCKET)
           See ethers(3SOCKET)

     ether_ntoa(3SOCKET)
           See ethers(3SOCKET)

     ether_ntohost(3SOCKET)
           See ethers(3SOCKET)

     ethers(3SOCKET)
           Ethernet address mapping operations

     euccol(3C)
           See euclen(3C)

     euclen(3C)
           get byte length and display width of EUC characters

     eucscol(3C)
           See euclen(3C)

     exit(3C)
           terminate process

     exp(3M)
           exponential function

     expm1(3M)
           computes exponential functions

     extended_to_decimal(3C)
           See floating_to_decimal(3C)

     fabs(3M)
           absolute value function

     fattach(3C)
           attach a STREAMS-based file descriptor to an object in
           the file system name space

     fclose(3C)
           close a stream

     fcntl(3HEAD)
           file control options

     fconvert(3C)
           See econvert(3C)

     fcvt(3C)
           See ecvt(3C)

     fdatasync(3RT)
           synchronize a file's data

     fdetach(3C)
           detach a name from a STREAMS-based file descriptor

     fdopen(3C)
           associate a stream with a file descriptor

     fdopendir(3C)
           See opendir(3C)

     fdwalk(3C)
           See closefrom(3C)

     feof(3C)
           See ferror(3C)

     ferror(3C)
           stream status inquiries

     fetch(3UCB)
           See dbm(3UCB)

     fflush(3C)
           flush a stream

     ffs(3C)
           find first set bit

     fgetc(3C)
           get a byte from a stream

     fgetgrent(3C)
           See getgrnam(3C)

     fgetgrent_r(3C)
           See getgrnam(3C)

     fgetpos(3C)
           get current file position information

     fgetprojent(3PROJECT)
           See getprojent(3PROJECT)

     fgetpwent(3C)
           See getpwnam(3C)

     fgetpwent_r(3C)
           See getpwnam(3C)

     fgets(3C)
           See gets(3C)

     fgetspent(3C)
           See getspnam(3C)

     fgetspent_r(3C)
           See getspnam(3C)

     fgetwc(3C)
           get a wide-character code from a stream

     fgetws(3C)
           See getws(3C)

     field_arg(3CURSES)
           See form_field_validation(3CURSES)

     field_back(3CURSES)
           See form_field_attributes(3CURSES)

     field_buffer(3CURSES)
           See form_field_buffer(3CURSES)

     field_count(3CURSES)
           See form_field(3CURSES)

     field_fore(3CURSES)
           See form_field_attributes(3CURSES)

     field_index(3CURSES)
           See form_page(3CURSES)

     field_info(3CURSES)
           See form_field_info(3CURSES)

     field_init(3CURSES)
           See form_hook(3CURSES)

     field_just(3CURSES)
           See form_field_just(3CURSES)

     field_opts(3CURSES)
           See form_field_opts(3CURSES)

     field_opts_off(3CURSES)
           See form_field_opts(3CURSES)

     field_opts_on(3CURSES)
           See form_field_opts(3CURSES)

     field_pad(3CURSES)
           See form_field_attributes(3CURSES)

     field_status(3CURSES)
           See form_field_buffer(3CURSES)

     field_term(3CURSES)
           See form_hook(3CURSES)

     field_type(3CURSES)
           See form_field_validation(3CURSES)

     field_userptr(3CURSES)
           See form_field_userptr(3CURSES)

     file_to_decimal(3C)
           See string_to_decimal(3C)

     fileno(3C)
           See ferror(3C)

     filter(3CURSES)
           See curs_util(3CURSES)

     filter(3XCURSES)
           disable use of certain terminal capabilities

     finite(3C)
           See isnan(3C)

     firstkey(3UCB)
           See dbm(3UCB)

     flash(3CURSES)
           See curs_beep(3CURSES)

     flash(3XCURSES)
           See beep(3XCURSES)

     floating_to_decimal(3C)
           convert floating-point value to decimal record

     floatingpoint(3HEAD)
           IEEE floating point definitions

     flock(3UCB)
           apply or remove an advisory lock on an open file

     flockfile(3C)
           acquire and release stream lock

     floor(3M)
           floor function

     flushinp(3CURSES)
           See curs_util(3CURSES)

     flushinp(3XCURSES)
           discard type-ahead characters

     fmod(3M)
           floating-point remainder value function

     fmtmsg(3C)
           display a message on stderr or system console

     fn_attr_bind(3XFN)
           bind a reference to a name  and  associate  attributes
           with named object

     fn_attr_create_subcontext(3XFN)
           create a subcontext in a context and associate  attri-
           butes with newly created context

     fn_attr_ext_search(3XFN)
           search for names in  the  specified  context(s)  whose
           attributes satisfy the filter

     fn_attr_get(3XFN)
           return specified attribute associated with name

     fn_attr_get_ids(3XFN)
           get a list of the identifiers of all attributes  asso-
           ciated with named object

     fn_attr_get_values(3XFN)
           return values of an attribute

     fn_attr_modify(3XFN)
           modify specified attribute associated with name

     fn_attr_multi_get(3XFN)
           return  multiple  attributes  associated  with   named
           object

     fn_attr_multi_modify(3XFN)
           modify  multiple  attributes  associated  with   named
           object

     fn_attr_search(3XFN)
           search for the atomic name of objects with the  speci-
           fied attributes in a single context

     fn_attribute_add(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_assign(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_copy(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_create(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_destroy(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_first(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_identifier(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_next(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_remove(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_syntax(3XFN)
           See FN_attribute_t(3XFN)

     fn_attribute_valuecount(3XFN)
           See FN_attribute_t(3XFN)

     fn_attrmodlist_add(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_assign(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_copy(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_count(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_create(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_destroy(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_first(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrmodlist_next(3XFN)
           See FN_attrmodlist_t(3XFN)

     fn_attrset_add(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_assign(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_copy(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_count(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_create(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_destroy(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_first(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_get(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_next(3XFN)
           See FN_attrset_t(3XFN)

     fn_attrset_remove(3XFN)
           See FN_attrset_t(3XFN)

     fn_bindinglist_destroy(3XFN)
           See fn_ctx_list_bindings(3XFN)

     fn_bindinglist_next(3XFN)
           See fn_ctx_list_bindings(3XFN)

     fn_composite_name_append_comp(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_append_name(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_assign(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_copy(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_count(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_create(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_delete_comp(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_destroy(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_first(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_from_str(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_from_string(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_insert_comp(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_insert_name(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_is_empty(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_is_equal(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_is_prefix(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_is_suffix(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_last(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_next(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_prefix(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_prepend_comp(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_prepend_name(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_prev(3XFN)
           See FN_composite_name_t(3XFN)

     fn_composite_name_suffix(3XFN)
           See FN_composite_name_t(3XFN)

     fn_compound_name_append_comp(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_assign(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_copy(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_count(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_delete_all(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_delete_comp(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_destroy(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_first(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_from_syntax_attrs(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_get_syntax_attrs(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_insert_comp(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_is_empty(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_is_equal(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_is_prefix(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_is_suffix(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_last(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_next(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_prefix(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_prepend_comp(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_prev(3XFN)
           See FN_compound_name_t(3XFN)

     fn_compound_name_suffix(3XFN)
           See FN_compound_name_t(3XFN)

     fn_ctx_bind(3XFN)
           bind a reference to a name

     fn_ctx_create_subcontext(3XFN)
           create a subcontext in a context

     fn_ctx_destroy_subcontext(3XFN)
           destroy the named context and remove its binding  from
           the parent context

     fn_ctx_equivalent_name(3XFN)
           construct an equivalent name in same context

     fn_ctx_get_ref(3XFN)
           return a context's reference

     fn_ctx_get_syntax_attrs(3XFN)
           return syntax attributes associated with named context

     fn_ctx_handle_destroy(3XFN)
           release storage associated with context handle

     fn_ctx_handle_from_initial(3XFN)
           return a handle to the Initial Context

     fn_ctx_handle_from_ref(3XFN)
           construct a handle to a context object using the given
           reference

     fn_ctx_list_bindings(3XFN)
           list the atomic names and references bound in  a  con-
           text

     fn_ctx_list_names(3XFN)
           list the atomic names bound in a context

     fn_ctx_lookup(3XFN)
           look up name in context

     fn_ctx_lookup_link(3XFN)
           look up the link reference bound to a name

     fn_ctx_rename(3XFN)
           rename the name of a binding

     fn_ctx_unbind(3XFN)
           unbind a name from a context

     fn_ext_searchlist_destroy(3XFN)
           See fn_attr_ext_search(3XFN)

     fn_ext_searchlist_next(3XFN)
           See fn_attr_ext_search(3XFN)

     fn_multigetlist_destroy(3XFN)
           See fn_attr_multi_get(3XFN)

     fn_multigetlist_next(3XFN)
           See fn_attr_multi_get(3XFN)

     fn_namelist_destroy(3XFN)
           See fn_ctx_list_names(3XFN)

     fn_namelist_next(3XFN)
           See fn_ctx_list_names(3XFN)

     fn_ref_addr_assign(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_copy(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_create(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_data(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_description(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_destroy(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_length(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addr_type(3XFN)
           See FN_ref_addr_t(3XFN)

     fn_ref_addrcount(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_append_addr(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_assign(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_copy(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_create(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_create_link(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_delete_addr(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_delete_all(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_description(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_destroy(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_first(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_insert_addr(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_is_link(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_link_name(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_next(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_prepend_addr(3XFN)
           See FN_ref_t(3XFN)

     fn_ref_type(3XFN)
           See FN_ref_t(3XFN)

     fn_search_control_assign(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_copy(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_create(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_destroy(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_follow_links(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_max_names(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_return_attr_ids(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_return_ref(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_control_scope(3XFN)
           See FN_search_control_t(3XFN)

     fn_search_filter_arguments(3XFN)
           See FN_search_filter_t(3XFN)

     fn_search_filter_assign(3XFN)
           See FN_search_filter_t(3XFN)

     fn_search_filter_copy(3XFN)
           See FN_search_filter_t(3XFN)

     fn_search_filter_create(3XFN)
           See FN_search_filter_t(3XFN)

     fn_search_filter_destroy(3XFN)
           See FN_search_filter_t(3XFN)

     fn_search_filter_expression(3XFN)
           See FN_search_filter_t(3XFN)

     fn_searchlist_destroy(3XFN)
           See fn_attr_search(3XFN)

     fn_searchlist_next(3XFN)
           See fn_attr_search(3XFN)

     fn_status_advance_by_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_append_remaining_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_append_resolved_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_assign(3XFN)
           See FN_status_t(3XFN)

     fn_status_code(3XFN)
           See FN_status_t(3XFN)

     fn_status_copy(3XFN)
           See FN_status_t(3XFN)

     fn_status_create(3XFN)
           See FN_status_t(3XFN)

     fn_status_description(3XFN)
           See FN_status_t(3XFN)

     fn_status_destroy(3XFN)
           See FN_status_t(3XFN)

     fn_status_diagnostic_message(3XFN)
           See FN_status_t(3XFN)

     fn_status_is_success(3XFN)
           See FN_status_t(3XFN)

     fn_status_link_code(3XFN)
           See FN_status_t(3XFN)

     fn_status_link_diagnostic_message(3XFN)
           See FN_status_t(3XFN)

     fn_status_link_remaining_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_link_resolved_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_link_resolved_ref(3XFN)
           See FN_status_t(3XFN)

     fn_status_remaining_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_resolved_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_resolved_ref(3XFN)
           See FN_status_t(3XFN)

     fn_status_set(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_code(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_diagnostic_message(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_link_code(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_link_diagnostic_message(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_link_remaining_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_link_resolved_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_link_resolved_ref(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_remaining_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_resolved_name(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_resolved_ref(3XFN)
           See FN_status_t(3XFN)

     fn_status_set_success(3XFN)
           See FN_status_t(3XFN)

     fn_string_assign(3XFN)
           See FN_string_t(3XFN)

     fn_string_bytecount(3XFN)
           See FN_string_t(3XFN)

     fn_string_charcount(3XFN)
           See FN_string_t(3XFN)

     fn_string_code_set(3XFN)
           See FN_string_t(3XFN)

     fn_string_compare(3XFN)
           See FN_string_t(3XFN)

     fn_string_compare_substring(3XFN)
           See FN_string_t(3XFN)

     fn_string_contents(3XFN)
           See FN_string_t(3XFN)

     fn_string_copy(3XFN)
           See FN_string_t(3XFN)

     fn_string_create(3XFN)
           See FN_string_t(3XFN)

     fn_string_destroy(3XFN)
           See FN_string_t(3XFN)

     fn_string_from_composite_name(3XFN)
           See FN_composite_name_t(3XFN)

     fn_string_from_compound_name(3XFN)
           See FN_compound_name_t(3XFN)

     fn_string_from_contents(3XFN)
           See FN_string_t(3XFN)

     fn_string_from_str(3XFN)
           See FN_string_t(3XFN)

     fn_string_from_str_n(3XFN)
           See FN_string_t(3XFN)

     fn_string_from_strings(3XFN)
           See FN_string_t(3XFN)

     fn_string_from_substring(3XFN)
           See FN_string_t(3XFN)

     fn_string_is_empty(3XFN)
           See FN_string_t(3XFN)

     fn_string_next_substring(3XFN)
           See FN_string_t(3XFN)

     fn_string_prev_substring(3XFN)
           See FN_string_t(3XFN)

     fn_string_str(3XFN)
           See FN_string_t(3XFN)

     fn_valuelist_destroy(3XFN)
           See fn_attr_get_values(3XFN)

     fn_valuelist_next(3XFN)
           See fn_attr_get_values(3XFN)

     fnmatch(3C)
           match filename or path name

     fopen(3C)
           open a stream

     fopen(3UCB)
           open a stream

     form_cursor(3CURSES)
           position forms window cursor

     form_data(3CURSES)
           tell if forms  field  has  off-screen  data  ahead  or
           behind

     form_driver(3CURSES)
           command processor for the forms subsystem

     form_field(3CURSES)
           connect fields to forms

     form_field_attributes(3CURSES)
           format the general display attributes of forms

     form_field_buffer(3CURSES)
           set and get forms field attributes

     form_field_info(3CURSES)
           get forms field characteristics

     form_field_just(3CURSES)
           format the general appearance of forms

     form_field_new(3CURSES)
           create and destroy forms fields

     form_field_opts(3CURSES)
           forms field option routines

     form_field_userptr(3CURSES)
           associate application data with forms

     form_field_validation(3CURSES)
           forms field data type validation

     form_fields(3CURSES)
           See form_field(3CURSES)

     form_fieldtype(3CURSES)
           forms fieldtype routines

     form_hook(3CURSES)
           assign application-specific routines for invocation by
           forms

     form_init(3CURSES)
           See form_hook(3CURSES)

     form_new(3CURSES)
           create and destroy forms

     form_new_page(3CURSES)
           forms pagination

     form_opts(3CURSES)
           forms option routines

     form_opts_off(3CURSES)
           See form_opts(3CURSES)

     form_opts_on(3CURSES)
           See form_opts(3CURSES)

     form_page(3CURSES)
           set forms current page and field

     form_post(3CURSES)
           write or erase forms from associated subwindows

     form_sub(3CURSES)
           See form_win(3CURSES)

     form_term(3CURSES)
           See form_hook(3CURSES)

     form_userptr(3CURSES)
           associate application data with forms

     form_win(3CURSES)
           forms window and subwindow association routines

     forms(3CURSES)
           character based forms package

     fp_resstat(3RESOLV)
           See resolver(3RESOLV)

     fpclass(3C)
           See isnan(3C)

     fpgetmask(3C)
           See fpgetround(3C)

     fpgetround(3C)
           IEEE floating-point environment control

     fpgetsticky(3C)
           See fpgetround(3C)

     fprintf(3C)
           See printf(3C)

     fprintf(3UCB)
           See printf(3UCB)

     fpsetmask(3C)
           See fpgetround(3C)

     fpsetround(3C)
           See fpgetround(3C)

     fpsetsticky(3C)
           See fpgetround(3C)

     fputc(3C)
           put a byte on a stream

     fputs(3C)
           See puts(3C)

     fputwc(3C)
           put wide-character code on a stream

     fputws(3C)
           put wide character string on a stream

     fread(3C)
           binary input

     free(3C)
           See malloc(3C)

     free(3MALLOC)
           See malloc(3MALLOC)

     freeDmiString(3DMI)
           free dynamic  memory  allocated  for  input  DmiString
           structure

     free_authattr(3SECDB)
           See getauthattr(3SECDB)

     free_execattr(3SECDB)
           See getexecattr(3SECDB)

     free_field(3CURSES)
           See form_field_new(3CURSES)

     free_fieldtype(3CURSES)
           See form_fieldtype(3CURSES)

     free_form(3CURSES)
           See form_new(3CURSES)

     free_item(3CURSES)
           See menu_item_new(3CURSES)

     free_menu(3CURSES)
           See menu_new(3CURSES)

     free_profattr(3SECDB)
           See getprofattr(3SECDB)

     free_proflist(3SECDB)
           See getprofattr(3SECDB)

     free_userattr(3SECDB)
           See getuserattr(3SECDB)

     freeaddrinfo(3SOCKET)
           See getaddrinfo(3SOCKET)

     freehostent(3SOCKET)
           See getipnodebyname(3SOCKET)

     freenetconfigent(3NSL)
           See getnetconfig(3NSL)

     freopen(3C)
           open a stream

     freopen(3UCB)
           See fopen(3UCB)

     frexp(3C)
           extract mantissa and exponent  from  double  precision
           number

     fscanf(3C)
           See scanf(3C)

     fseek(3C)
           reposition a file-position indicator in a stream

     fseeko(3C)
           See fseek(3C)

     fsetpos(3C)
           reposition a file pointer in a stream

     fsync(3C)
           synchronize changes to a file

     ftell(3C)
           return a file offset in a stream

     ftello(3C)
           See ftell(3C)

     ftime(3C)
           get date and time

     ftok(3C)
           generate an IPC key

     ftruncate(3C)
           See truncate(3C)

     ftrylockfile(3C)
           See flockfile(3C)

     ftw(3C)
           walk a file tree

     func_to_decimal(3C)
           See string_to_decimal(3C)

     funlockfile(3C)
           See flockfile(3C)

     fwide(3C)
           set stream orientation

     fwprintf(3C)
           print formatted wide-character output

     fwrite(3C)
           binary output

     fwscanf(3C)
           convert formatted wide-character input

     gai_strerror(3SOCKET)
           See getaddrinfo(3SOCKET)

     gamma(3M)
           See lgamma(3M)

     gamma_r(3M)
           See lgamma(3M)

     gconvert(3C)
           See econvert(3C)

     gcvt(3C)
           See ecvt(3C)

     gelf(3ELF)
           generic class-independent ELF interface

     gelf_checksum(3ELF)
           See gelf(3ELF)

     gelf_fsize(3ELF)
           See gelf(3ELF)

     gelf_getclass(3ELF)
           See gelf(3ELF)

     gelf_getdyn(3ELF)
           See gelf(3ELF)

     gelf_getehdr(3ELF)
           See gelf(3ELF)

     gelf_getphdr(3ELF)
           See gelf(3ELF)

     gelf_getrel(3ELF)
           See gelf(3ELF)

     gelf_getrela(3ELF)
           See gelf(3ELF)

     gelf_getshdr(3ELF)
           See gelf(3ELF)

     gelf_getsym(3ELF)
           See gelf(3ELF)

     gelf_getsyminfo(3ELF)
           See gelf(3ELF)

     gelf_newehdr(3ELF)
           See gelf(3ELF)

     gelf_newphdr(3ELF)
           See gelf(3ELF)

     gelf_update_dyn(3ELF)
           See gelf(3ELF)

     gelf_update_ehdr(3ELF)
           See gelf(3ELF)

     gelf_update_phdr(3ELF)
           See gelf(3ELF)

     gelf_update_rel(3ELF)
           See gelf(3ELF)

     gelf_update_rela(3ELF)
           See gelf(3ELF)

     gelf_update_shdr(3ELF)
           See gelf(3ELF)

     gelf_update_sym(3ELF)
           See gelf(3ELF)

     gelf_update_syminfo(3ELF)
           See gelf(3ELF)

     gelf_xlatetof(3ELF)
           See gelf(3ELF)

     gelf_xslatetom(3ELF)
           See gelf(3ELF)

     get_myaddress(3NSL)
           See rpc_soc(3NSL)

     get_wch(3XCURSES)
           get a wide character from terminal

     get_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     getacdir(3BSM)
           See getacinfo(3BSM)

     getacflg(3BSM)
           See getacinfo(3BSM)

     getacinfo(3BSM)
           get audit control file information

     getacmin(3BSM)
           See getacinfo(3BSM)

     getacna(3BSM)
           See getacinfo(3BSM)

     getaddrinfo(3SOCKET)
           translate between node name and address

     getauclassent(3BSM)
           get audit_class entry

     getauclassent_r(3BSM)
           See getauclassent(3BSM)

     getauclassnam(3BSM)
           See getauclassent(3BSM)

     getauclassnam_r(3BSM)
           See getauclassent(3BSM)

     getauditflags(3BSM)
           convert audit flag specifications

     getauditflagsbin(3BSM)
           See getauditflags(3BSM)

     getauditflagschar(3BSM)
           See getauditflags(3BSM)

     getauevent(3BSM)
           get audit_event entry

     getauevent_r(3BSM)
           See getauevent(3BSM)

     getauevnam(3BSM)
           See getauevent(3BSM)

     getauevnam_r(3BSM)
           See getauevent(3BSM)

     getauevnonam(3BSM)
           See getauevent(3BSM)

     getauevnum(3BSM)
           See getauevent(3BSM)

     getauevnum_r(3BSM)
           See getauevent(3BSM)

     getauthattr(3SECDB)
           get authorization entry

     getauthnam(3SECDB)
           See getauthattr(3SECDB)

     getauuserent(3BSM)
           See getauusernam(3BSM)

     getauusernam(3BSM)
           get audit_user entry

     getbegyx(3CURSES)
           See curs_getyx(3CURSES)

     getbegyx(3XCURSES)
           get cursor or window coordinates

     getbkgd(3XCURSES)
           See bkgd(3XCURSES)

     getbkgrnd(3XCURSES)
           See bkgrnd(3XCURSES)

     getc(3C)
           See fgetc(3C)

     getc_unlocked(3C)
           See fgetc(3C)

     getcchar(3XCURSES)
           get a wide character string (with  rendition)  from  a
           cchar_t

     getch(3CURSES)
           See curs_getch(3CURSES)

     getch(3XCURSES)
           get a single-byte character from the terminal

     getchar(3C)
           See fgetc(3C)

     getchar_unlocked(3C)
           See fgetc(3C)

     getcpuid(3C)
           obtain information on scheduling decisions

     getcwd(3C)
           get pathname of current working directory

     getdate(3C)
           convert user format date and time

     getddent(3BSM)
           get device_deallocate entry

     getddnam(3BSM)
           See getddent(3BSM)

     getdefaultproj(3PROJECT)
           See getprojent(3PROJECT)

     getdmapent(3BSM)
           get device_maps entry

     getdmapnam(3BSM)
           See getdmapent(3BSM)

     getdmaptdev(3BSM)
           See getdmapent(3BSM)

     getdmaptype(3BSM)
           See getdmapent(3BSM)

     getdtablesize(3C)
           get the file descriptor table size

     getenv(3C)
           return value for environment name

     getexecattr(3SECDB)
           get execution profile entry

     getexecname(3C)
           return pathname of executable

     getexecprof(3SECDB)
           See getexecattr(3SECDB)

     getexecuser(3SECDB)
           See getexecattr(3SECDB)

     getextmntent(3C)
           See getmntent(3C)

     getfauditflags(3BSM)
           generates the process audit state

     getgrent(3C)
           See getgrnam(3C)

     getgrent_r(3C)
           See getgrnam(3C)

     getgrgid(3C)
           See getgrnam(3C)

     getgrgid_r(3C)
           See getgrnam(3C)

     getgrnam(3C)
           group database entry functions

     getgrnam_r(3C)
           See getgrnam(3C)

     gethomelgroup(3C)
           See getcpuid(3C)

     gethostbyaddr(3NSL)
           See gethostbyname(3NSL)

     gethostbyaddr(3XNET)
           See endhostent(3XNET)

     gethostbyaddr_r(3NSL)
           See gethostbyname(3NSL)

     gethostbyname(3NSL)
           get network host entry

     gethostbyname(3XNET)
           See endhostent(3XNET)

     gethostbyname_r(3NSL)
           See gethostbyname(3NSL)

     gethostent(3NSL)
           See gethostbyname(3NSL)

     gethostent(3XNET)
           See endhostent(3XNET)

     gethostent_r(3NSL)
           See gethostbyname(3NSL)

     gethostid(3C)
           get an identifier for the current host

     gethostname(3C)
           get or set name of current host

     gethostname(3XNET)
           get name of current host

     gethrtime(3C)
           get high resolution time

     gethrvtime(3C)
           See gethrtime(3C)

     getipnodebyaddr(3SOCKET)
           See getipnodebyname(3SOCKET)

     getipnodebyname(3SOCKET)
           get IP node entry

     getloadavg(3C)
           get system load averages

     getlogin(3C)
           get login name

     getlogin_r(3C)
           See getlogin(3C)

     getmaxyx(3CURSES)
           See curs_getyx(3CURSES)

     getmaxyx(3XCURSES)
           See getbegyx(3XCURSES)

     getmntany(3C)
           See getmntent(3C)

     getmntent(3C)
           get mounted device information

     getn_wstr(3XCURSES)
           get a wide character string from terminal

     getnameinfo(3SOCKET)
           See getaddrinfo(3SOCKET)

     getnetbyaddr(3SOCKET)
           See getnetbyname(3SOCKET)

     getnetbyaddr(3XNET)
           See endnetent(3XNET)

     getnetbyaddr_r(3SOCKET)
           See getnetbyname(3SOCKET)

     getnetbyname(3SOCKET)
           get network entry

     getnetbyname(3XNET)
           See endnetent(3XNET)

     getnetbyname_r(3SOCKET)
           See getnetbyname(3SOCKET)

     getnetconfig(3NSL)
           get network configuration database entry

     getnetconfigent(3NSL)
           See getnetconfig(3NSL)

     getnetent(3SOCKET)
           See getnetbyname(3SOCKET)

     getnetent(3XNET)
           See endnetent(3XNET)

     getnetent_r(3SOCKET)
           See getnetbyname(3SOCKET)

     getnetgrent(3C)
           get network group entry

     getnetgrent_r(3C)
           See getnetgrent(3C)

     getnetname(3NSL)
           See secure_rpc(3NSL)

     getnetpath(3NSL)
           get /etc/netconfig entry corresponding to NETPATH com-
           ponent

     getnstr(3XCURSES)
           get a multibyte character string from terminal

     getnwstr(3CURSES)
           See curs_getwstr(3CURSES)

     getopt(3C)
           get option letter from argument vector

     getpagesize(3C)
           get system page size

     getpagesizes(3C)
           get system supported page sizes

     getparyx(3CURSES)
           See curs_getyx(3CURSES)

     getparyx(3XCURSES)
           See getbegyx(3XCURSES)

     getpass(3C)
           read a string of characters without echo

     getpassphrase(3C)
           See getpass(3C)

     getpeername(3SOCKET)
           get name of connected peer

     getpeername(3XNET)
           get the name of the peer socket

     getpriority(3C)
           get or set process scheduling priority

     getprofattr(3SECDB)
           get profile description and attributes

     getproflist(3SECDB)
           See getprofattr(3SECDB)

     getprofnam(3SECDB)
           See getprofattr(3SECDB)

     getprojbyid(3PROJECT)
           See getprojent(3PROJECT)

     getprojbyname(3PROJECT)
           See getprojent(3PROJECT)

     getprojent(3PROJECT)
           project database entry functions

     getprojidbyname(3PROJECT)
           See getprojent(3PROJECT)

     getprotobyname(3SOCKET)
           get protocol entry

     getprotobyname(3XNET)
           See endprotoent(3XNET)

     getprotobyname_r(3SOCKET)
           See getprotobyname(3SOCKET)

     getprotobynumber(3SOCKET)
           See getprotobyname(3SOCKET)

     getprotobynumber(3XNET)
           See endprotoent(3XNET)

     getprotobynumber_r(3SOCKET)
           See getprotobyname(3SOCKET)

     getprotoent(3SOCKET)
           See getprotobyname(3SOCKET)

     getprotoent(3XNET)
           See endprotoent(3XNET)

     getprotoent_r(3SOCKET)
           See getprotobyname(3SOCKET)

     getpublickey(3NSL)
           retrieve public or secret key

     getpw(3C)
           get passwd entry from UID

     getpwent(3C)
           See getpwnam(3C)

     getpwent_r(3C)
           See getpwnam(3C)

     getpwnam(3C)
           get password entry

     getpwnam_r(3C)
           See getpwnam(3C)

     getpwuid(3C)
           See getpwnam(3C)

     getpwuid_r(3C)
           See getpwnam(3C)

     getrpcbyname(3NSL)
           get RPC entry

     getrpcbyname_r(3NSL)
           See getrpcbyname(3NSL)

     getrpcbynumber(3NSL)
           See getrpcbyname(3NSL)

     getrpcbynumber_r(3NSL)
           See getrpcbyname(3NSL)

     getrpcent(3NSL)
           See getrpcbyname(3NSL)

     getrpcent_r(3NSL)
           See getrpcbyname(3NSL)

     getrpcport(3NSL)
           See rpc_soc(3NSL)

     getrusage(3C)
           get information about resource utilization

     gets(3C)
           get a string from a stream

     getsecretkey(3NSL)
           See getpublickey(3NSL)

     getservbyname(3SOCKET)
           get service entry

     getservbyname(3XNET)
           See endservent(3XNET)

     getservbyname_r(3SOCKET)
           See getservbyname(3SOCKET)

     getservbyport(3SOCKET)
           See getservbyname(3SOCKET)

     getservbyport(3XNET)
           See endservent(3XNET)

     getservbyport_r(3SOCKET)
           See getservbyname(3SOCKET)

     getservent(3SOCKET)
           See getservbyname(3SOCKET)

     getservent(3XNET)
           See endservent(3XNET)

     getservent_r(3SOCKET)
           See getservbyname(3SOCKET)

     getsockname(3SOCKET)
           get socket name

     getsockname(3XNET)
           get the socket name

     getsockopt(3SOCKET)
           get and set options on sockets

     getsockopt(3XNET)
           get the socket options

     getspent(3C)
           See getspnam(3C)

     getspent_r(3C)
           See getspnam(3C)

     getspnam(3C)
           get password entry

     getspnam_r(3C)
           See getspnam(3C)

     getstr(3CURSES)
           See curs_getstr(3CURSES)

     getstr(3XCURSES)
           See getnstr(3XCURSES)

     getsubopt(3C)
           parse suboptions from a string

     getsyx(3CURSES)
           See curs_kernel(3CURSES)

     gettext(3C)
           message handling functions

     gettimeofday(3C)
           get or set the date and time

     gettimeofday(3UCB)
           get or set the date and time

     gettxt(3C)
           retrieve a text string

     getuserattr(3SECDB)
           get user_attr entry

     getusernam(3SECDB)
           See getuserattr(3SECDB)

     getusershell(3C)
           get legal user shells

     getuseruid(3SECDB)
           See getuserattr(3SECDB)

     getutent(3C)
           user accounting database functions

     getutid(3C)
           See getutent(3C)

     getutline(3C)
           See getutent(3C)

     getutmp(3C)
           See getutxent(3C)

     getutmpx(3C)
           See getutxent(3C)

     getutxent(3C)
           user accounting database functions

     getutxid(3C)
           See getutxent(3C)

     getutxline(3C)
           See getutxent(3C)

     getvfsany(3C)
           See getvfsent(3C)

     getvfsent(3C)
           get vfstab file entry

     getvfsfile(3C)
           See getvfsent(3C)

     getvfsspec(3C)
           See getvfsent(3C)

     getw(3C)
           See fgetc(3C)

     getwc(3C)
           get wide character from a stream

     getwch(3CURSES)
           See curs_getwch(3CURSES)

     getwchar(3C)
           get wide character from stdin stream

     getwd(3C)
           get current working directory pathname

     getwidth(3C)
           get codeset information

     getwin(3CURSES)
           See curs_util(3CURSES)

     getwin(3XCURSES)
           read a window from, and write a window to, a file

     getws(3C)
           get a wide-character string from a stream

     getwstr(3CURSES)
           See curs_getwstr(3CURSES)

     getyx(3CURSES)
           See curs_getyx(3CURSES)

     getyx(3XCURSES)
           See getbegyx(3XCURSES)

     glob(3C)
           generate path names matching a pattern

     globfree(3C)
           See glob(3C)

     gmatch(3GEN)
           shell global pattern matching

     gmtime(3C)
           See ctime(3C)

     gmtime_r(3C)
           See ctime(3C)

     grantpt(3C)
           grant access to the slave pseudo-terminal device

     gsignal(3C)
           See ssignal(3C)

     gss_accept_sec_context(3GSS)
           accept a security context initiated by a peer applica-
           tion

     gss_acquire_cred(3GSS)
           acquire a handle for a pre-existing credential by name

     gss_add_cred(3GSS)
           add a credential-element to a credential

     gss_add_oid_set_member(3GSS)
           add an object identifier to an object identifier set

     gss_canonicalize_name(3GSS)
           convert an internal name to a mechanism name

     gss_compare_name(3GSS)
           compare two internal-form names

     gss_context_time(3GSS)
           determine how long a context will remain valid

     gss_create_empty_oid_set(3GSS)
           create an object-identifier set containing  no  object
           identifiers

     gss_delete_sec_context(3GSS)
           delete a GSS-API security context

     gss_display_name(3GSS)
           convert internal-form name to text

     gss_display_status(3GSS)
           convert a GSS-API status code to text

     gss_duplicate_name(3GSS)
           create a copy of an internal name

     gss_export_name(3GSS)
           convert a mechanism name to export form

     gss_export_sec_context(3GSS)
           transfer a security context to another process

     gss_get_mic(3GSS)
           calculate a cryptographic message

     gss_import_name(3GSS)
           convert a contiguous string name to  GSS_API  internal
           format

     gss_import_sec_context(3GSS)
           import security context established by another process

     gss_indicate_mechs(3GSS)
           determine available security mechanisms

     gss_init_sec_context(3GSS)
           initiate a GSS-API security context with a peer appli-
           cation

     gss_inquire_context(3GSS)
           obtain information about a security context

     gss_inquire_cred(3GSS)
           obtain information about a credential

     gss_inquire_cred_by_mech(3GSS)
           obtain per-mechanism information about a credential

     gss_inquire_mechs_for_name(3GSS)
           list mechanisms that support the specified name-type

     gss_inquire_names_for_mech(3GSS)
           list the name-types supported by the specified mechan-
           ism

     gss_oid_to_str(3GSS)
           convert an OID to a string

     gss_process_context_token(3GSS)
           pass asynchronous token to security service

     gss_release_buffer(3GSS)
           free buffer storage allocated by a GSS-API function

     gss_release_cred(3GSS)
           discard a credential handle

     gss_release_name(3GSS)
           discard an internal-form name

     gss_release_oid(3GSS)
           release an object identifier

     gss_release_oid_set(3GSS)
           free  storage  associated  with  a   GSS-API-generated
           gss_OID_set object

     gss_str_to_oid(3GSS)
           convert a string to an OID

     gss_test_oid_set_member(3GSS)
           interrogate an object identifier set

     gss_verify_mic(3GSS)
           verify integrity of a received message

     gss_wrap(3GSS)
           attach a cryptographic message

     gss_wrap(3GSS)
           attach a cryptographic message

     gss_wrap_size_limit(3GSS)
           allow application to determine  maximum  message  size
           with  resulting  output  token  of a specified maximum
           size

     halfdelay(3CURSES)
           See curs_inopts(3CURSES)

     halfdelay(3XCURSES)
           enable/disable half-delay mode

     has_colors(3CURSES)
           See curs_color(3CURSES)

     has_colors(3XCURSES)
           See can_change_color(3XCURSES)

     has_ic(3CURSES)
           See curs_termattrs(3CURSES)

     has_ic(3XCURSES)
           determine insert/delete character/line capability

     has_il(3CURSES)
           See curs_termattrs(3CURSES)

     has_il(3XCURSES)
           See has_ic(3XCURSES)

     hasmntopt(3C)
           See getmntent(3C)

     havedisk(3RPC)
           See rstat(3RPC)

     hcreate(3C)
           See hsearch(3C)

     hdestroy(3C)
           See hsearch(3C)

     herror(3RESOLV)
           See resolver(3RESOLV)

     hide_panel(3CURSES)
           See panel_show(3CURSES)

     hline(3XCURSES)
           use single-byte characters (and  renditions)  to  draw
           lines

     hline_set(3XCURSES)
           use complex characters (and renditions) to draw lines

     host2netname(3NSL)
           See secure_rpc(3NSL)

     hsearch(3C)
           manage hash search tables

     hstrerror(3RESOLV)
           See resolver(3RESOLV)

     htonl(3SOCKET)
           See byteorder(3SOCKET)

     htonl(3XNET)
           convert values between host and network byte order

     htons(3SOCKET)
           See byteorder(3SOCKET)

     htons(3XNET)
           See htonl(3XNET)

     hypot(3M)
           Euclidean distance function

     iconv(3C)
           code conversion function

     iconv_close(3C)
           code conversion deallocation function

     iconv_open(3C)
           code conversion allocation function

     idcok(3CURSES)
           See curs_outopts(3CURSES)

     idcok(3XCURSES)
           enable/disable hardware insert-character  and  delete-
           character features

     idlok(3CURSES)
           See curs_outopts(3CURSES)

     idlok(3XCURSES)
           See clearok(3XCURSES)

     idn_decodename(3EXT)
           IDN (Internationalized Domain Name)  conversion  func-
           tions

     idn_decodename2(3EXT)
           See idn_decodename(3EXT)

     idn_enable(3EXT)
           See idn_decodename(3EXT)

     idn_encodename(3EXT)
           See idn_decodename(3EXT)

     idn_nameinit(3EXT)
           See idn_decodename(3EXT)

     if_freenameindex(3NSL)
           See if_nametoindex(3NSL)

     if_freenameindex(3XNET)
           See if_nametoindex(3XNET)

     if_indextoname(3NSL)
           See if_nametoindex(3NSL)

     if_indextoname(3XNET)
           See if_nametoindex(3XNET)

     if_nameindex(3NSL)
           See if_nametoindex(3NSL)

     if_nameindex(3XNET)
           See if_nametoindex(3XNET)

     if_nametoindex(3NSL)
           routines to map Internet  Protocol  network  interface
           names and interface indexes

     if_nametoindex(3XNET)
           functions to map Internet Protocol  network  interface
           names and interface indexes

     ilogb(3M)
           returns an unbiased exponent

     immedok(3CURSES)
           See curs_outopts(3CURSES)

     immedok(3XCURSES)
           call refresh on changes to window

     in(3HEAD)
           Internet Protocol family

     in_wch(3XCURSES)
           retrieve a complex character (with rendition)

     in_wchnstr(3XCURSES)
           retrieve complex character string (with rendition)

     in_wchstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     inch(3CURSES)
           See curs_inch(3CURSES)

     inch(3XCURSES)
           return a single-byte character (with rendition)

     inchnstr(3CURSES)
           See curs_inchstr(3CURSES)

     inchnstr(3XCURSES)
           retrieve a single-byte character string  (with  rendi-
           tion)

     inchstr(3CURSES)
           See curs_inchstr(3CURSES)

     inchstr(3XCURSES)
           See inchnstr(3XCURSES)

     index(3C)
           string operations

     inet(3HEAD)
           definitions for internet operations

     inet(3SOCKET)
           Internet address manipulation

     inet6(3SOCKET)
           See inet(3SOCKET)

     inet_addr(3SOCKET)
           See inet(3SOCKET)

     inet_addr(3XNET)
           Internet address manipulation

     inet_lnaof(3SOCKET)
           See inet(3SOCKET)

     inet_lnaof(3XNET)
           See inet_addr(3XNET)

     inet_makeaddr(3SOCKET)
           See inet(3SOCKET)

     inet_makeaddr(3XNET)
           See inet_addr(3XNET)

     inet_netof(3SOCKET)
           See inet(3SOCKET)

     inet_netof(3XNET)
           See inet_addr(3XNET)

     inet_network(3SOCKET)
           See inet(3SOCKET)

     inet_network(3XNET)
           See inet_addr(3XNET)

     inet_ntoa(3SOCKET)
           See inet(3SOCKET)

     inet_ntoa(3XNET)
           See inet_addr(3XNET)

     inet_ntop(3SOCKET)
           See inet(3SOCKET)

     inet_pton(3SOCKET)
           See inet(3SOCKET)

     init_color(3CURSES)
           See curs_color(3CURSES)

     init_color(3XCURSES)
           See can_change_color(3XCURSES)

     init_pair(3CURSES)
           See curs_color(3CURSES)

     init_pair(3XCURSES)
           See can_change_color(3XCURSES)

     initgroups(3C)
           initialize the supplementary group access list

     initscr(3CURSES)
           See curs_initscr(3CURSES)

     initscr(3XCURSES)
           screen initialization functions

     initstate(3C)
           See random(3C)

     innetgr(3C)
           See getnetgrent(3C)

     innstr(3CURSES)
           See curs_instr(3CURSES)

     innstr(3XCURSES)
           retrieve a multibyte character string (without  rendi-
           tion)

     innwstr(3CURSES)
           See curs_inwstr(3CURSES)

     innwstr(3XCURSES)
           retrieve a wide character string (without rendition)

     inproj(3PROJECT)
           See getprojent(3PROJECT)

     ins_nwstr(3XCURSES)
           insert a wide character string

     ins_wch(3XCURSES)
           insert a complex character

     ins_wstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     insch(3CURSES)
           See curs_insch(3CURSES)

     insch(3XCURSES)
           insert a character

     insdelln(3CURSES)
           See curs_deleteln(3CURSES)

     insdelln(3XCURSES)
           insert/delete lines to/from the window

     insertln(3CURSES)
           See curs_deleteln(3CURSES)

     insertln(3XCURSES)
           insert a line in a window

     insnstr(3CURSES)
           See curs_insstr(3CURSES)

     insnstr(3XCURSES)
           insert a multibyte character string

     insnwstr(3CURSES)
           See curs_inswstr(3CURSES)

     insque(3C)
           insert/remove element from a queue

     insstr(3CURSES)
           See curs_insstr(3CURSES)

     insstr(3XCURSES)
           See insnstr(3XCURSES)

     instr(3CURSES)
           See curs_instr(3CURSES)

     instr(3XCURSES)
           See innstr(3XCURSES)

     inswch(3CURSES)
           See curs_inswch(3CURSES)

     inswstr(3CURSES)
           See curs_inswstr(3CURSES)

     intrflush(3CURSES)
           See curs_inopts(3CURSES)

     intrflush(3XCURSES)
            enable or disable flush on interrupt

     inwch(3CURSES)
           See curs_inwch(3CURSES)

     inwchnstr(3CURSES)
           See curs_inwchstr(3CURSES)

     inwchstr(3CURSES)
           See curs_inwchstr(3CURSES)

     inwstr(3CURSES)
           See curs_inwstr(3CURSES)

     inwstr(3XCURSES)
           See innwstr(3XCURSES)

     is_linetouched(3CURSES)
           See curs_touch(3CURSES)

     is_linetouched(3XCURSES)
           control window refresh

     is_wintouched(3CURSES)
           See curs_touch(3CURSES)

     is_wintouched(3XCURSES)
           See is_linetouched(3XCURSES)

     isaexec(3C)
           invoke isa-specific executable

     isalnum(3C)
           See ctype(3C)

     isalpha(3C)
           See ctype(3C)

     isascii(3C)
           See ctype(3C)

     isastream(3C)
           test a file descriptor

     isatty(3C)
           test for a terminal device

     iscntrl(3C)
           See ctype(3C)

     isdigit(3C)
           See ctype(3C)

     isencrypt(3GEN)
           determine whether a buffer of characters is encrypted

     isendwin(3CURSES)
           See curs_initscr(3CURSES)

     isendwin(3XCURSES)
           See endwin(3XCURSES)

     isenglish(3C)
           See iswalpha(3C)

     isgraph(3C)
           See ctype(3C)

     isideogram(3C)
           See iswalpha(3C)

     islower(3C)
           See ctype(3C)

     isnan(3C)
           determine type of floating-point number

     isnan(3M)
           test for NaN

     isnand(3C)
           See isnan(3C)

     isnanf(3C)
           See isnan(3C)

     isnumber(3C)
           See iswalpha(3C)

     isphonogram(3C)
           See iswalpha(3C)

     isprint(3C)
           See ctype(3C)

     ispunct(3C)
           See ctype(3C)

     isspace(3C)
           See ctype(3C)

     isspecial(3C)
           See iswalpha(3C)

     isupper(3C)
           See ctype(3C)

     iswalnum(3C)
           See iswalpha(3C)

     iswalpha(3C)
           wide-character code classification functions

     iswascii(3C)
           See iswalpha(3C)

     iswcntrl(3C)
           See iswalpha(3C)

     iswctype(3C)
           test character for specified class

     iswdigit(3C)
           See iswalpha(3C)

     iswgraph(3C)
           See iswalpha(3C)

     iswlower(3C)
           See iswalpha(3C)

     iswprint(3C)
           See iswalpha(3C)

     iswpunct(3C)
           See iswalpha(3C)

     iswspace(3C)
           See iswalpha(3C)

     iswupper(3C)
           See iswalpha(3C)

     iswxdigit(3C)
           See iswalpha(3C)

     isxdigit(3C)
           See ctype(3C)

     item_count(3CURSES)
           See menu_items(3CURSES)

     item_description(3CURSES)
           See menu_item_name(3CURSES)

     item_index(3CURSES)
           See menu_item_current(3CURSES)

     item_init(3CURSES)
           See menu_hook(3CURSES)

     item_name(3CURSES)
           See menu_item_name(3CURSES)

     item_opts(3CURSES)
           See menu_item_opts(3CURSES)

     item_opts_off(3CURSES)
           See menu_item_opts(3CURSES)

     item_opts_on(3CURSES)
           See menu_item_opts(3CURSES)

     item_term(3CURSES)
           See menu_hook(3CURSES)

     item_userptr(3CURSES)
           See menu_item_userptr(3CURSES)

     item_value(3CURSES)
           See menu_item_value(3CURSES)

     item_visible(3CURSES)
           See menu_item_visible(3CURSES)

     j0(3M)
           Bessel functions of the first kind

     j1(3M)
           See j0(3M)

     jn(3M)
           See j0(3M)

     jrand48(3C)
           See drand48(3C)

     key_decryptsession(3NSL)
           See secure_rpc(3NSL)

     key_encryptsession(3NSL)
           See secure_rpc(3NSL)

     key_gendes(3NSL)
           See secure_rpc(3NSL)

     key_name(3XCURSES)
           See keyname(3XCURSES)

     key_secretkey_is_set(3NSL)
           See secure_rpc(3NSL)

     key_setsecret(3NSL)
           See secure_rpc(3NSL)

     keyname(3CURSES)
           See curs_util(3CURSES)

     keyname(3XCURSES)
           return character string used as key name

     keypad(3CURSES)
           See curs_inopts(3CURSES)

     keypad(3XCURSES)
           enable/disable keypad handling

     killchar(3CURSES)
           See curs_termattrs(3CURSES)

     killchar(3XCURSES)
           See erasechar(3XCURSES)

     killpg(3C)
           send signal to a process group

     killwchar(3XCURSES)
           See erasechar(3XCURSES)

     kstat(3KSTAT)
           kernel statistics facility

     kstat(3PERL)
           Perl tied hash interface to the kstat facility

     kstat_chain_update(3KSTAT)
           update the kstat header chain

     kstat_close(3KSTAT)
           See kstat_open(3KSTAT)

     kstat_data_lookup(3KSTAT)
           See kstat_lookup(3KSTAT)

     kstat_lookup(3KSTAT)
           find a kstat by name

     kstat_open(3KSTAT)
           initialize kernel statistics facility

     kstat_read(3KSTAT)
           read or write kstat data

     kstat_write(3KSTAT)
           See kstat_read(3KSTAT)

     kva_match(3SECDB)
           look up a key in a key-value array

     kvm_close(3KVM)
           See kvm_open(3KVM)

     kvm_getcmd(3KVM)
           See kvm_getu(3KVM)

     kvm_getproc(3KVM)
           See kvm_nextproc(3KVM)

     kvm_getu(3KVM)
           get the u-area or invocation arguments for a process

     kvm_kread(3KVM)
           See kvm_read(3KVM)

     kvm_kwrite(3KVM)
           See kvm_read(3KVM)

     kvm_nextproc(3KVM)
           read system process structures

     kvm_nlist(3KVM)
           get entries from kernel symbol table

     kvm_open(3KVM)
           specify a kernel to examine

     kvm_read(3KVM)
           copy data to or from a kernel image or running system

     kvm_setproc(3KVM)
           See kvm_nextproc(3KVM)

     kvm_uread(3KVM)
           See kvm_read(3KVM)

     kvm_uwrite(3KVM)
           See kvm_read(3KVM)

     kvm_write(3KVM)
           See kvm_read(3KVM)

     l64a(3C)
           See a64l(3C)

     la_activity(3EXT)
           See rtld_audit(3EXT)

     la_i86_pltenter(3EXT)
           See rtld_audit(3EXT)

     la_objopen(3EXT)
           See rtld_audit(3EXT)

     la_objsearch(3EXT)
           See rtld_audit(3EXT)

     la_pltexit(3EXT)
           See rtld_audit(3EXT)

     la_pltexit64(3EXT)
           See rtld_audit(3EXT)

     la_preinit(3EXT)
           See rtld_audit(3EXT)

     la_sparcv8_pltenter(3EXT)
           See rtld_audit(3EXT)

     la_sparcv9_pltenter(3EXT)
           See rtld_audit(3EXT)

     la_symbind32(3EXT)
           See rtld_audit(3EXT)

     la_symbind64(3EXT)
           See rtld_audit(3EXT)

     la_version(3EXT)
           See rtld_audit(3EXT)

     label(3PLOT)
           See plot(3PLOT)

     labs(3C)
           See abs(3C)

     langinfo(3HEAD)
           language information constants

     lckpwdf(3C)
           manipulate shadow password database lock file

     lcong48(3C)
           See drand48(3C)

     ld_atexit(3EXT)
           See ld_support(3EXT)

     ld_atexit64(3EXT)
           See ld_support(3EXT)

     ld_file(3EXT)
           See ld_support(3EXT)

     ld_file64(3EXT)
           See ld_support(3EXT)

     ld_input_done(3EXT)
           See ld_support(3EXT)

     ld_input_section(3EXT)
           See ld_support(3EXT)

     ld_input_section64(3EXT)
           See ld_support(3EXT)

     ld_section(3EXT)
           See ld_support(3EXT)

     ld_section64(3EXT)
           See ld_support(3EXT)

     ld_start(3EXT)
           See ld_support(3EXT)

     ld_start64(3EXT)
           See ld_support(3EXT)

     ld_support(3EXT)
           link-editor support functions

     ld_version(3EXT)
           See ld_support(3EXT)

     ldap(3LDAP)
           Lightweight Directory Access Protocol package

     ldap_8859_to_t61(3LDAP)
           See ldap_charset(3LDAP)

     ldap_abandon(3LDAP)
           abandon an LDAP operation in progress

     ldap_add(3LDAP)
           perform an LDAP add operation

     ldap_add_ext(3LDAP)
           See ldap_add(3LDAP)

     ldap_add_ext_s(3LDAP)
           See ldap_add(3LDAP)

     ldap_add_s(3LDAP)
           See ldap_add(3LDAP)

     ldap_ber_free(3LDAP)
           free a BerElement structure from memory

     ldap_bind(3LDAP)
           LDAP bind functions

     ldap_bind_s(3LDAP)
           See ldap_bind(3LDAP)

     ldap_build_filter(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_charset(3LDAP)
           LDAP character set translation functions

     ldap_compare(3LDAP)
           LDAP compare operation

     ldap_compare_ext(3LDAP)
           See ldap_compare(3LDAP)

     ldap_compare_ext_s(3LDAP)
           See ldap_compare(3LDAP)

     ldap_compare_s(3LDAP)
           See ldap_compare(3LDAP)

     ldap_control_free(3LDAP)
           LDAP control disposal

     ldap_controls_free(3LDAP)
           See ldap_control_free(3LDAP)

     ldap_count_entries(3LDAP)
           See ldap_first_entry(3LDAP)

     ldap_count_messages(3LDAP)
           See ldap_first_message(3LDAP)

     ldap_count_references(3LDAP)
           See ldap_first_entry(3LDAP)

     ldap_count_values(3LDAP)
           See ldap_get_values(3LDAP)

     ldap_count_values_len(3LDAP)
           See ldap_get_values(3LDAP)

     ldap_delete(3LDAP)
           LDAP delete operation

     ldap_delete_ext(3LDAP)
           See ldap_delete(3LDAP)

     ldap_delete_ext_s(3LDAP)
           See ldap_delete(3LDAP)

     ldap_delete_s(3LDAP)
           See ldap_delete(3LDAP)

     ldap_disptmpl(3LDAP)
           LDAP display template functions

     ldap_dn2ufn(3LDAP)
           See ldap_get_dn(3LDAP)

     ldap_dn_to_url(3LDAP)
           See ldap_url(3LDAP)

     ldap_dns_to_dn(3LDAP)
           See ldap_get_dn(3LDAP)

     ldap_dns_to_url(3LDAP)
           See ldap_url(3LDAP)

     ldap_enable_translation(3LDAP)
           See ldap_charset(3LDAP)

     ldap_entry2html(3LDAP)
           See ldap_entry2text(3LDAP)

     ldap_entry2html_search(3LDAP)
           See ldap_entry2text(3LDAP)

     ldap_entry2text(3LDAP)
           LDAP entry display functions

     ldap_entry2text_search(3LDAP)
           See ldap_entry2text(3LDAP)

     ldap_err2string(3LDAP)
           See ldap_error(3LDAP)

     ldap_error(3LDAP)
           LDAP protocol error handling functions

     ldap_explode_dn(3LDAP)
           See ldap_get_dn(3LDAP)

     ldap_explode_dns(3LDAP)
           See ldap_get_dn(3LDAP)

     ldap_first_attribute(3LDAP)
           step through LDAP entry attributes

     ldap_first_disptmpl(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_first_entry(3LDAP)
           LDAP entry parsing and counting functions

     ldap_first_message(3LDAP)
           LDAP message processing functions

     ldap_first_reference(3LDAP)
           See ldap_first_entry(3LDAP)

     ldap_first_searchobj(3LDAP)
           See ldap_searchprefs(3LDAP)

     ldap_first_tmplcol(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_first_tmplrow(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_free_friendlymap(3LDAP)
           See ldap_friendly(3LDAP)

     ldap_free_searchprefs(3LDAP)
           See ldap_searchprefs(3LDAP)

     ldap_free_templates(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_free_urldesc(3LDAP)
           See ldap_url(3LDAP)

     ldap_friendly(3LDAP)
           LDAP attribute  remapping functions

     ldap_friendly_name(3LDAP)
           See ldap_friendly(3LDAP)

     ldap_get_dn(3LDAP)
           LDAP DN handling functions

     ldap_get_entry_controls(3LDAP)
           get the LDAP controls included with a directory  entry
           in a set of search results

     ldap_get_lang_values(3LDAP)
           return an attribute's  values that matches a specified
           language subtype

     ldap_get_lang_values_len(3LDAP)
           See ldap_get_lang_values(3LDAP)

     ldap_get_option(3LDAP)
           get/set session preferences in the

     ldap_get_values(3LDAP)
           LDAP attribute value handling functions

     ldap_get_values_len(3LDAP)
           See ldap_get_values(3LDAP)

     ldap_getfilter(3LDAP)
           LDAP filter generating functions

     ldap_getfilter_free(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_getfirstfilter(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_getnextfilter(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_init(3LDAP)
           See ldap_open(3LDAP)

     ldap_init_getfilter(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_init_getfilter_buf(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_init_searchprefs(3LDAP)
           See ldap_searchprefs(3LDAP)

     ldap_init_searchprefs_buf(3LDAP)
           See ldap_searchprefs(3LDAP)

     ldap_init_templates(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_init_templates_buf(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_is_dns_dn(3LDAP)
           See ldap_get_dn(3LDAP)

     ldap_is_ldap_url(3LDAP)
           See ldap_url(3LDAP)

     ldap_memcache(3LDAP)
           LDAP client caching functions

     ldap_memcache_destroy(3LDAP)
           See ldap_memcache(3LDAP)

     ldap_memcache_flush(3LDAP)
           See ldap_memcache(3LDAP)

     ldap_memcache_get(3LDAP)
           See ldap_memcache(3LDAP)

     ldap_memcache_init(3LDAP)
           See ldap_memcache(3LDAP)

     ldap_memcache_set(3LDAP)
           See ldap_memcache(3LDAP)

     ldap_memcache_update(3LDAP)
           See ldap_memcache(3LDAP)

     ldap_memfree(3LDAP)
           free memory allocated by LDAP API functions

     ldap_modify(3LDAP)
           LDAP entry modification functions

     ldap_modify_ext(3LDAP)
           See ldap_modify(3LDAP)

     ldap_modify_ext_s(3LDAP)
           See ldap_modify(3LDAP)

     ldap_modify_s(3LDAP)
           See ldap_modify(3LDAP)

     ldap_modrdn(3LDAP)
           modify LDAP entry RDN

     ldap_modrdn2(3LDAP)
           See ldap_modrdn(3LDAP)

     ldap_modrdn2_s(3LDAP)
           See ldap_modrdn(3LDAP)

     ldap_modrdn_s(3LDAP)
           See ldap_modrdn(3LDAP)

     ldap_mods_free(3LDAP)
           See ldap_modify(3LDAP)

     ldap_msgfree(3LDAP)
           See ldap_result(3LDAP)

     ldap_msgtype(3LDAP)
           See ldap_first_message(3LDAP)

     ldap_name2template(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_next_attribute(3LDAP)
           See ldap_first_attribute(3LDAP)

     ldap_next_disptmpl(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_next_entry(3LDAP)
           See ldap_first_entry(3LDAP)

     ldap_next_message(3LDAP)
           See ldap_first_message(3LDAP)

     ldap_next_reference(3LDAP)
           See ldap_first_entry(3LDAP)

     ldap_next_searchobj(3LDAP)
           See ldap_searchprefs(3LDAP)

     ldap_next_tmplcol(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_next_tmplrow(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_oc2template(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_open(3LDAP)
           initialize an LDAP session

     ldap_parse_extended_result(3LDAP)
           See ldap_parse_result(3LDAP)

     ldap_parse_result(3LDAP)
           LDAP message result parser

     ldap_parse_sasl_bind_result(3LDAP)
           See ldap_parse_result(3LDAP)

     ldap_perror(3LDAP)
           See ldap_error(3LDAP)

     ldap_rename(3LDAP)
           See ldap_modrdn(3LDAP)

     ldap_rename_s(3LDAP)
           See ldap_modrdn(3LDAP)

     ldap_result(3LDAP)
           wait for and return LDAP operation result

     ldap_result2error(3LDAP)
           See ldap_error(3LDAP)

     ldap_sasl_bind(3LDAP)
           See ldap_bind(3LDAP)

     ldap_sasl_bind_s(3LDAP)
           See ldap_bind(3LDAP)

     ldap_search(3LDAP)
           LDAP search operations

     ldap_search_ext(3LDAP)
           See ldap_search(3LDAP)

     ldap_search_ext_s(3LDAP)
           See ldap_search(3LDAP)

     ldap_search_s(3LDAP)
           See ldap_search(3LDAP)

     ldap_search_st(3LDAP)
           See ldap_search(3LDAP)

     ldap_searchprefs(3LDAP)
           LDAP search preference configuration routeines

     ldap_set_option(3LDAP)
           See ldap_get_option(3LDAP)

     ldap_set_rebind_proc(3LDAP)
           See ldap_bind(3LDAP)

     ldap_set_string_translators(3LDAP)
           See ldap_charset(3LDAP)

     ldap_setfilteraffixes(3LDAP)
           See ldap_getfilter(3LDAP)

     ldap_simple_bind(3LDAP)
           See ldap_bind(3LDAP)

     ldap_simple_bind_s(3LDAP)
           See ldap_bind(3LDAP)

     ldap_sort(3LDAP)
           LDAP entry sorting functions

     ldap_sort_entries(3LDAP)
           See ldap_sort(3LDAP)

     ldap_sort_strcasecmp(3LDAP)
           See ldap_sort(3LDAP)

     ldap_sort_values(3LDAP)
           See ldap_sort(3LDAP)

     ldap_t61_to_8859(3LDAP)
           See ldap_charset(3LDAP)

     ldap_tmplattrs(3LDAP)
           See ldap_disptmpl(3LDAP)

     ldap_translate_from_t61(3LDAP)
           See ldap_charset(3LDAP)

     ldap_translate_to_t61(3LDAP)
           See ldap_charset(3LDAP)

     ldap_ufn(3LDAP)
           LDAP user friendly search functions

     ldap_ufn_search_c(3LDAP)
           See ldap_ufn(3LDAP)

     ldap_ufn_search_ct(3LDAP)
           See ldap_ufn(3LDAP)

     ldap_ufn_search_s(3LDAP)
           See ldap_ufn(3LDAP)

     ldap_ufn_setfilter(3LDAP)
           See ldap_ufn(3LDAP)

     ldap_ufn_setprefix(3LDAP)
           See ldap_ufn(3LDAP)

     ldap_ufn_timeout(3LDAP)
           See ldap_ufn(3LDAP)

     ldap_unbind(3LDAP)
           See ldap_bind(3LDAP)

     ldap_unbind_ext(3LDAP)
           See ldap_bind(3LDAP)

     ldap_unbind_s(3LDAP)
           See ldap_bind(3LDAP)

     ldap_url(3LDAP)
           LDAP Uniform Resource Locator functions

     ldap_url_parse(3LDAP)
           See ldap_url(3LDAP)

     ldap_url_search(3LDAP)
           See ldap_url(3LDAP)

     ldap_url_search_s(3LDAP)
           See ldap_url(3LDAP)

     ldap_url_search_st(3LDAP)
           See ldap_url(3LDAP)

     ldap_vals2html(3LDAP)
           See ldap_entry2text(3LDAP)

     ldap_vals2text(3LDAP)
           See ldap_entry2text(3LDAP)

     ldap_value_free(3LDAP)
           See ldap_get_values(3LDAP)

     ldap_value_free_len(3LDAP)
           See ldap_get_values(3LDAP)

     ldap_version(3LDAP)
           get version information about the LDAP SDK for C

     ldexp(3C)
           load exponent of a floating point number

     ldiv(3C)
           See div(3C)

     leaveok(3CURSES)
           See curs_outopts(3CURSES)

     leaveok(3XCURSES)
           See clearok(3XCURSES)

     lfind(3C)
           See lsearch(3C)

     lfmt(3C)
           display error message in standard format and  pass  to
           logging and monitoring services

     lgamma(3M)
           log gamma function

     lgamma_r(3M)
           See lgamma(3M)

     lgrp_affinity_get(3LGRP)
           get of set lgroup affinity

     lgrp_affinity_set(3LGRP)
           See lgrp_affinity_get(3LGRP)

     lgrp_children(3LGRP)
           get children of given lgroup

     lgrp_cookie_stale(3LGRP)
           determine whether  snapshot  of  lgroup  hierarchy  is
           stale

     lgrp_cpus(3LGRP)
           get CPU IDs contained in specified lgroup

     lgrp_fini(3LGRP)
           finished using lgroup interface

     lgrp_home(3LGRP)
           get home lgroup

     lgrp_init(3LGRP)
           initialize lgroup interface

     lgrp_latency(3LGRP)
           get latency between two lgroups

     lgrp_mem_size(3LGRP)
           return the memory size of the given lgroup

     lgrp_nlgrps(3LGRP)
           get number of lgroups

     lgrp_parents(3LGRP)
           get parents of given lgroup

     lgrp_root(3LGRP)
           return root lgroup ID

     lgrp_version(3LGRP)
           coordinate library and application versions

     lgrp_view(3LGRP)
           get view of lgroup hierarchy

     lib300(3LIB)
           See libplot(3LIB)

     lib300s(3LIB)
           See libplot(3LIB)

     lib4014(3LIB)
           See libplot(3LIB)

     lib450(3LIB)
           See libplot(3LIB)

     libadm(3LIB)
           general administrative library

     libaio(3LIB)
           asynchronous I/O library

     libbsdmalloc(3LIB)
           memory allocator interface library

     libbsm(3LIB)
           basic security library

     libc(3LIB)
           C library

     libcfgadm(3LIB)
           configuration adminstartion library

     libcpc(3LIB)
           CPU performance counter library

     libcrypt(3LIB)
           encryption/decryption library

     libcurses(3LIB)
           screen handling and optimization library

     libcurses(3LIBUCB)
           SunOS/BSD-compatible screen handling and  optimization
           library

     libcurses(3XCURSES)
           X/Open Curses library

     libdbm(3LIBUCB)
           database subroutines library

     libdevid(3LIB)
           device ID library

     libdevinfo(3DEVINFO)
           library of device information functions

     libdevinfo(3LIB)
           device information library

     libdl(3LIB)
           dynamic linking library

     libdmi(3LIB)
           Sun Solstice Enterprise Agent DMI library

     libdmici(3LIB)
           Sun Solstice Enterprise Agent Component library

     libdmimi(3LIB)
           Sun Solstice Enterprise Agent Management library

     libefi(3LIB)
           EFI partition table library

     libelf(3LIB)
           ELF access library

     libexacct(3LIB)
           extended accounting file access library

     libform(3LIB)
           forms library

     libgen(3LIB)
           string pattern-matching library

     libgss(3LIB)
           Generic Security Services library

     libidnkit(3LIB)
           IDN conversion library

     libintl(3LIB)
           internationalization library

     libkstat(3LIB)
           kernel statistics library

     libkvm(3LIB)
           Kernel Virtual Memory access library

     libl(3LIB)
           lex library

     liblayout(3LIB)
           layout service library

     liblgrp(3LIB)
           locality group library

     libmail(3LIB)
           user mailbox lockfile management library

     libmalloc(3LIB)
           memory allocation library

     libmapmalloc(3LIB)
           alternative memory allocator library

     libmd5(3LIB)
           MD5 hashing library

     libmenu(3LIB)
           menus library

     libmp(3LIB)
           multiple precision library

     libmtmalloc(3LIB)
           multi-threaded memory allocator library

     libnsl(3LIB)
           network services library

     libnvpair(3LIB)
           name-value pair library

     libnvpair(3NVPAIR)
           library of name-value pair functions

     libpam(3LIB)
           PAM (Pluggable Authentication Module) library

     libpanel(3LIB)
           panels library

     libpctx(3LIB)
           process context library

     libpicl(3LIB)
           PICL library

     libpicl(3PICL)
           PICL interface library

     libpicltree(3LIB)
           PICL plug-in library

     libpicltree(3PICLTREE)
           PTree and Plug-in Registration interface library

     libplot(3LIB)
           graphics interface libraries

     libpool(3LIB)
           pool configuration manipulation library

     libposix4(3LIB)
           See librt(3LIB)

     libproject(3LIB)
           project database access library

     libpthread(3LIB)
           POSIX threads library

     librac(3LIB)
           remote asynchronous calls library

     libresolv(3LIB)
           resolver library

     librpcsoc(3LIBUCB)
           obsolete RPC library

     librpcsvc(3LIB)
           RPC services library

     librsm(3LIB)
           remote shared memory interface library

     librt(3LIB)
           POSIX.1b Realtime Extensions library

     librtld_db(3LIB)
           runtime linker debugging library

     libsec(3LIB)
           File Access Control List library

     libsecdb(3LIB)
           security attributes database library

     libsendfile(3LIB)
           sendfile library

     libslp(3LIB)
           service location protocol library

     libsmartcard(3LIB)
           smartcard library

     libsocket(3LIB)
           sockets library

     libssagent(3LIB)
           Sun Solstice Enterprise Agent library

     libssasnmp(3LIB)
           Sun Solstice Enterprise SNMP library

     libsys(3LIB)
           system library

     libsysevent(3LIB)
           system event interface library

     libtermcap(3LIB)
           See libcurses(3LIB)

     libtermcap(3LIBUCB)
           terminal independent operation library

     libtermlib(3LIB)
           See libcurses(3LIB)

     libthread(3LIB)
           threads library

     libthread_db(3LIB)
           threads debugging library

     libthread_db(3THR)
           library of interfaces for monitoring and  manipulating
           threads-related aspects of multithreaded programs

     libtnfctl(3LIB)
           TNF probe control library

     libtnfctl(3TNF)
           library for TNF probe control in a process or the ker-
           nel

     libucb(3LIBUCB)
           UCB source compatibility library

     libumem(3LIB)
           object-caching memory allocation library

     libvolmgt(3LIB)
           volume management library

     libvt0(3LIB)
           See libplot(3LIB)

     libw(3LIB)
           wide character library

     libwsreg(3LIB)
           product install registry library

     libxfn(3LIB)
           X/Open Federated Naming (XFN) library

     libxnet(3LIB)
           X/Open Networking library

     liby(3LIB)
           yacc library

     line(3PLOT)
           See plot(3PLOT)

     linemod(3PLOT)
           See plot(3PLOT)

     link_field(3CURSES)
           See form_field_new(3CURSES)

     link_fieldtype(3CURSES)
           See form_fieldtype(3CURSES)

     lio_listio(3RT)
           list directed I/O

     listen(3SOCKET)
           listen for connections on a socket

     listen(3XNET)
           listen for socket connections and limit the  queue  of
           incoming connections

     llabs(3C)
           See abs(3C)

     lldiv(3C)
           See div(3C)

     lltostr(3C)
           See strtol(3C)

     localeconv(3C)
           get numeric formatting information

     localtime(3C)
           See ctime(3C)

     localtime_r(3C)
           See ctime(3C)

     lockf(3C)
           record locking on files

     log(3M)
           natural logarithm function

     log10(3M)
           base 10 logarithm function

     log1p(3M)
           compute natural logarithm

     logb(3M)
           radix-independent exponent

     longjmp(3C)
           See setjmp(3C)

     longjmp(3UCB)
           See setjmp(3UCB)

     longname(3CURSES)
           See curs_termattrs(3CURSES)

     longname(3XCURSES)
           return full terminal type name

     lrand48(3C)
           See drand48(3C)

     lsearch(3C)
           linear search and update

     m_create_layout(3LAYOUT)
           initialize a layout object

     m_destroy_layout(3LAYOUT)
           destroy a layout object

     m_getvalues_layout(3LAYOUT)
           query layout values of a LayoutObject

     m_setvalues_layout(3LAYOUT)
           set layout values of a

     m_transform_layout(3LAYOUT)
           layout transformation

     m_wtransform_layout(3LAYOUT)
           layout transformation for wide character strings

     madvise(3C)
           provide advice to VM system

     maillock(3MAIL)
           functions to manage lockfile(s) for user's mailbox

     mailunlock(3MAIL)
           See maillock(3MAIL)

     major(3C)
           See makedev(3C)

     makecontext(3C)
           manipulate user contexts

     makedev(3C)
           manage a device number

     mallinfo(3MALLOC)
           See malloc(3MALLOC)

     malloc(3C)
           memory allocator

     malloc(3MALLOC)
           memory allocator

     mallocctl(3MALLOC)
           See mtmalloc(3MALLOC)

     mallopt(3MALLOC)
           See malloc(3MALLOC)

     mapmalloc(3MALLOC)
           memory allocator

     match_execattr(3SECDB)
           See getexecattr(3SECDB)

     math(3HEAD)
           math functions and constants

     matherr(3M)
           math library exception-handling function

     mblen(3C)
           get number of bytes in a character

     mbrlen(3C)
           get number of bytes in a character (restartable)

     mbrtowc(3C)
           convert a character to a wide-character code (restart-
           able)

     mbsinit(3C)
           determine conversion object status

     mbsrtowcs(3C)
           convert a character string to a wide-character  string
           (restartable)

     mbstowcs(3C)
           convert a character string to a wide-character string

     mbtowc(3C)
           convert a character to a wide-character code

     mctl(3UCB)
           memory management control

     md5(3EXT)
           MD5 digest functions

     md5_calc(3EXT)
           See md5(3EXT)

     media_findname(3VOLMGT)
           convert a supplied name into an absolute pathname that
           can be used to access removable media

     media_getattr(3VOLMGT)
           get and set media attributes

     media_getid(3VOLMGT)
           return the id of a piece of media

     media_setattr(3VOLMGT)
           See media_getattr(3VOLMGT)

     memalign(3C)
           See malloc(3C)

     memalign(3MALLOC)
           See watchmalloc(3MALLOC)

     memccpy(3C)
           See memory(3C)

     memchr(3C)
           See memory(3C)

     memcmp(3C)
           See memory(3C)

     memcpy(3C)
           See memory(3C)

     memmove(3C)
           See memory(3C)

     memory(3C)
           memory operations

     memset(3C)
           See memory(3C)

     menu_attributes(3CURSES)
           control menus display attributes

     menu_back(3CURSES)
           See menu_attributes(3CURSES)

     menu_cursor(3CURSES)
           correctly position a menus cursor

     menu_driver(3CURSES)
           command processor for the menus subsystem

     menu_fore(3CURSES)
           See menu_attributes(3CURSES)

     menu_format(3CURSES)
           set and get maximum numbers of  rows  and  columns  in
           menus

     menu_grey(3CURSES)
           See menu_attributes(3CURSES)

     menu_hook(3CURSES)
           assign  application-specific  routines  for  automatic
           invocation by menus

     menu_init(3CURSES)
           See menu_hook(3CURSES)

     menu_item_current(3CURSES)
           set and get current menus items

     menu_item_name(3CURSES)
           get menus item name and description

     menu_item_new(3CURSES)
           create and destroy menus items

     menu_item_opts(3CURSES)
           menus item option routines

     menu_item_userptr(3CURSES)
           associate application data with menus items

     menu_item_value(3CURSES)
           set and get menus item values

     menu_item_visible(3CURSES)
           tell if menus item is visible

     menu_items(3CURSES)
           connect and disconnect items to and from menus

     menu_mark(3CURSES)
           menus mark string routines

     menu_new(3CURSES)
           create and destroy menus

     menu_opts(3CURSES)
           menus option routines

     menu_opts_off(3CURSES)
           See menu_opts(3CURSES)

     menu_opts_on(3CURSES)
           See menu_opts(3CURSES)

     menu_pad(3CURSES)
           See menu_attributes(3CURSES)

     menu_pattern(3CURSES)
           set and get menus pattern match buffer

     menu_post(3CURSES)
           write or erase menus from associated subwindows

     menu_sub(3CURSES)
           See menu_win(3CURSES)

     menu_term(3CURSES)
           See menu_hook(3CURSES)

     menu_userptr(3CURSES)
           associate application data with menus

     menu_win(3CURSES)
           menus window and subwindow association routines

     menus(3CURSES)
           character based menus package

     meta(3CURSES)
           See curs_inopts(3CURSES)

     meta(3XCURSES)
           enable/disable meta keys

     minor(3C)
           See makedev(3C)

     mkdirp(3GEN)
           create or remove directories in a path

     mkfifo(3C)
           make a FIFO special file

     mkstemp(3C)
           make a unique file name

     mktemp(3C)
           make a unique file name

     mktime(3C)
           converts a tm structure to a calendar time

     mlock(3C)
           lock or unlock pages in memory

     mlockall(3C)
           lock or unlock address space

     modf(3C)
           decompose floating-point number

     modff(3C)
           See modf(3C)

     monitor(3C)
           prepare process execution profile

     move(3CURSES)
           See curs_move(3CURSES)

     move(3PLOT)
           See plot(3PLOT)

     move(3XCURSES)
           move cursor in window

     move_field(3CURSES)
           See form_field(3CURSES)

     move_panel(3CURSES)
           See panel_move(3CURSES)

     movenextch(3CURSES)
           See curs_alecompat(3CURSES)

     moveprevch(3CURSES)
           See curs_alecompat(3CURSES)

     mp(3MP)
           multiple precision integer arithmetic

     mp_gcd(3MP)
           See mp(3MP)

     mp_itom(3MP)
           See mp(3MP)

     mp_madd(3MP)
           See mp(3MP)

     mp_mcmp(3MP)
           See mp(3MP)

     mp_mdiv(3MP)
           See mp(3MP)

     mp_mfree(3MP)
           See mp(3MP)

     mp_min(3MP)
           See mp(3MP)

     mp_mout(3MP)
           See mp(3MP)

     mp_msub(3MP)
           See mp(3MP)

     mp_mtox(3MP)
           See mp(3MP)

     mp_mult(3MP)
           See mp(3MP)

     mp_pow(3MP)
           See mp(3MP)

     mp_rpow(3MP)
           See mp(3MP)

     mp_xtom(3MP)
           See mp(3MP)

     mq_close(3RT)
           close a message queue

     mq_getattr(3RT)
           get message queue attributes

     mq_notify(3RT)
           notify process (or thread) that a message is available
           on a queue

     mq_open(3RT)
           open a message queue

     mq_receive(3RT)
           receive a message from a message queue

     mq_send(3RT)
           send a message to a message queue

     mq_setattr(3RT)
           set/get message queue attributes

     mq_unlink(3RT)
           remove a message queue

     mqueue(3HEAD)
           message queues

     mrand48(3C)
           See drand48(3C)

     msync(3C)
           synchronize memory with physical storage

     mtmalloc(3MALLOC)
           MT hot memory allocator

     munlock(3C)
           See mlock(3C)

     munlockall(3C)
           See mlockall(3C)

     mutex(3THR)
           concepts relating to mutual exclusion locks

     mutex_destroy(3THR)
           See mutex_init(3THR)

     mutex_init(3THR)
           mutual exclusion locks

     mutex_lock(3THR)
           See mutex_init(3THR)

     mutex_trylock(3THR)
           See mutex_init(3THR)

     mutex_unlock(3THR)
           See mutex_init(3THR)

     mvadd_wch(3XCURSES)
           See add_wch(3XCURSES)

     mvadd_wchnstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     mvadd_wchstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     mvaddch(3CURSES)
           See curs_addch(3CURSES)

     mvaddch(3XCURSES)
           See addch(3XCURSES)

     mvaddchnstr(3CURSES)
           See curs_addchstr(3CURSES)

     mvaddchnstr(3XCURSES)
           See addchstr(3XCURSES)

     mvaddchstr(3CURSES)
           See curs_addchstr(3CURSES)

     mvaddchstr(3XCURSES)
           See addchstr(3XCURSES)

     mvaddnstr(3CURSES)
           See curs_addstr(3CURSES)

     mvaddnstr(3XCURSES)
           See addnstr(3XCURSES)

     mvaddnwstr(3CURSES)
           See curs_addwstr(3CURSES)

     mvaddnwstr(3XCURSES)
           See addnwstr(3XCURSES)

     mvaddstr(3CURSES)
           See curs_addstr(3CURSES)

     mvaddstr(3XCURSES)
           See addnstr(3XCURSES)

     mvaddwch(3CURSES)
           See curs_addwch(3CURSES)

     mvaddwchnstr(3CURSES)
           See curs_addwchstr(3CURSES)

     mvaddwchstr(3CURSES)
           See curs_addwchstr(3CURSES)

     mvaddwstr(3CURSES)
           See curs_addwstr(3CURSES)

     mvaddwstr(3XCURSES)
           See addnwstr(3XCURSES)

     mvchgat(3XCURSES)
           See chgat(3XCURSES)

     mvcur(3CURSES)
           See curs_terminfo(3CURSES)

     mvcur(3XCURSES)
           move the cursor

     mvdelch(3CURSES)
           See curs_delch(3CURSES)

     mvdelch(3XCURSES)
           See delch(3XCURSES)

     mvderwin(3CURSES)
           See curs_window(3CURSES)

     mvderwin(3XCURSES)
           map area of parent window to subwindow

     mvget_wch(3XCURSES)
           See get_wch(3XCURSES)

     mvget_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     mvgetch(3CURSES)
           See curs_getch(3CURSES)

     mvgetch(3XCURSES)
           See getch(3XCURSES)

     mvgetn_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     mvgetnstr(3XCURSES)
           See getnstr(3XCURSES)

     mvgetnwstr(3CURSES)
           See curs_getwstr(3CURSES)

     mvgetstr(3CURSES)
           See curs_getstr(3CURSES)

     mvgetstr(3XCURSES)
           See getnstr(3XCURSES)

     mvgetwch(3CURSES)
           See curs_getwch(3CURSES)

     mvgetwstr(3CURSES)
           See curs_getwstr(3CURSES)

     mvhline(3XCURSES)
           See hline(3XCURSES)

     mvhline_set(3XCURSES)
           See hline_set(3XCURSES)

     mvin_wch(3XCURSES)
           See in_wch(3XCURSES)

     mvin_wchnstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     mvin_wchstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     mvinch(3CURSES)
           See curs_inch(3CURSES)

     mvinch(3XCURSES)
           See inch(3XCURSES)

     mvinchnstr(3CURSES)
           See curs_inchstr(3CURSES)

     mvinchnstr(3XCURSES)
           See inchnstr(3XCURSES)

     mvinchstr(3CURSES)
           See curs_inchstr(3CURSES)

     mvinchstr(3XCURSES)
           See inchnstr(3XCURSES)

     mvinnstr(3CURSES)
           See curs_instr(3CURSES)

     mvinnstr(3XCURSES)
           See innstr(3XCURSES)

     mvinnwstr(3CURSES)
           See curs_inwstr(3CURSES)

     mvinnwstr(3XCURSES)
           See innwstr(3XCURSES)

     mvins_nwstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     mvins_wch(3XCURSES)
           See ins_wch(3XCURSES)

     mvins_wstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     mvinsch(3CURSES)
           See curs_insch(3CURSES)

     mvinsch(3XCURSES)
           See insch(3XCURSES)

     mvinsnstr(3CURSES)
           See curs_insstr(3CURSES)

     mvinsnstr(3XCURSES)
           See insnstr(3XCURSES)

     mvinsnwstr(3CURSES)
           See curs_inswstr(3CURSES)

     mvinsstr(3CURSES)
           See curs_insstr(3CURSES)

     mvinsstr(3XCURSES)
           See insnstr(3XCURSES)

     mvinstr(3CURSES)
           See curs_instr(3CURSES)

     mvinstr(3XCURSES)
           See innstr(3XCURSES)

     mvinswch(3CURSES)
           See curs_inswch(3CURSES)

     mvinswstr(3CURSES)
           See curs_inswstr(3CURSES)

     mvinwch(3CURSES)
           See curs_inwch(3CURSES)

     mvinwchnstr(3CURSES)
           See curs_inwchstr(3CURSES)

     mvinwchstr(3CURSES)
           See curs_inwchstr(3CURSES)

     mvinwstr(3CURSES)
           See curs_inwstr(3CURSES)

     mvinwstr(3XCURSES)
           See innwstr(3XCURSES)

     mvprintw(3CURSES)
           See curs_printw(3CURSES)

     mvprintw(3XCURSES)
           print formatted output window

     mvscanw(3CURSES)
           See curs_scanw(3CURSES)

     mvscanw(3XCURSES)
           convert formatted input from a window

     mvvline(3XCURSES)
           See hline(3XCURSES)

     mvvline_set(3XCURSES)
           See hline_set(3XCURSES)

     mvwadd_wch(3XCURSES)
           See add_wch(3XCURSES)

     mvwadd_wchnstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     mvwadd_wchstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     mvwaddch(3CURSES)
           See curs_addch(3CURSES)

     mvwaddch(3XCURSES)
           See addch(3XCURSES)

     mvwaddchnstr(3CURSES)
           See curs_addchstr(3CURSES)

     mvwaddchnstr(3XCURSES)
           See addchstr(3XCURSES)

     mvwaddchstr(3CURSES)
           See curs_addchstr(3CURSES)

     mvwaddchstr(3XCURSES)
           See addchstr(3XCURSES)

     mvwaddnstr(3CURSES)
           See curs_addstr(3CURSES)

     mvwaddnstr(3XCURSES)
           See addnstr(3XCURSES)

     mvwaddnwstr(3CURSES)
           See curs_addwstr(3CURSES)

     mvwaddnwstr(3XCURSES)
           See addnwstr(3XCURSES)

     mvwaddstr(3CURSES)
           See curs_addstr(3CURSES)

     mvwaddstr(3XCURSES)
           See addnstr(3XCURSES)

     mvwaddwch(3CURSES)
           See curs_addwch(3CURSES)

     mvwaddwchnstr(3CURSES)
           See curs_addwchstr(3CURSES)

     mvwaddwchstr(3CURSES)
           See curs_addwchstr(3CURSES)

     mvwaddwstr(3CURSES)
           See curs_addwstr(3CURSES)

     mvwaddwstr(3XCURSES)
           See addnwstr(3XCURSES)

     mvwchgat(3XCURSES)
           See chgat(3XCURSES)

     mvwdelch(3CURSES)
           See curs_delch(3CURSES)

     mvwdelch(3XCURSES)
           See delch(3XCURSES)

     mvwget_wch(3XCURSES)
           See get_wch(3XCURSES)

     mvwget_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     mvwgetch(3CURSES)
           See curs_getch(3CURSES)

     mvwgetch(3XCURSES)
           See getch(3XCURSES)

     mvwgetn_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     mvwgetnstr(3XCURSES)
           See getnstr(3XCURSES)

     mvwgetnwstr(3CURSES)
           See curs_getwstr(3CURSES)

     mvwgetstr(3CURSES)
           See curs_getstr(3CURSES)

     mvwgetstr(3XCURSES)
           See getnstr(3XCURSES)

     mvwgetwch(3CURSES)
           See curs_getwch(3CURSES)

     mvwgetwstr(3CURSES)
           See curs_getwstr(3CURSES)

     mvwhline(3XCURSES)
           See hline(3XCURSES)

     mvwhline_set(3XCURSES)
           See hline_set(3XCURSES)

     mvwin(3CURSES)
           See curs_window(3CURSES)

     mvwin(3XCURSES)
           move window

     mvwin_wch(3XCURSES)
           See in_wch(3XCURSES)

     mvwin_wchnstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     mvwin_wchstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     mvwinch(3CURSES)
           See curs_inch(3CURSES)

     mvwinch(3XCURSES)
           See inch(3XCURSES)

     mvwinchnstr(3CURSES)
           See curs_inchstr(3CURSES)

     mvwinchnstr(3XCURSES)
           See inchnstr(3XCURSES)

     mvwinchstr(3CURSES)
           See curs_inchstr(3CURSES)

     mvwinchstr(3XCURSES)
           See inchnstr(3XCURSES)

     mvwinnstr(3CURSES)
           See curs_instr(3CURSES)

     mvwinnstr(3XCURSES)
           See innstr(3XCURSES)

     mvwinnwstr(3CURSES)
           See curs_inwstr(3CURSES)

     mvwinnwstr(3XCURSES)
           See innwstr(3XCURSES)

     mvwins_nwstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     mvwins_wch(3XCURSES)
           See ins_wch(3XCURSES)

     mvwins_wstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     mvwinsch(3CURSES)
           See curs_insch(3CURSES)

     mvwinsch(3XCURSES)
           See insch(3XCURSES)

     mvwinsnstr(3CURSES)
           See curs_insstr(3CURSES)

     mvwinsnstr(3XCURSES)
           See insnstr(3XCURSES)

     mvwinsnwstr(3CURSES)
           See curs_inswstr(3CURSES)

     mvwinsstr(3CURSES)
           See curs_insstr(3CURSES)

     mvwinsstr(3XCURSES)
           See insnstr(3XCURSES)

     mvwinstr(3CURSES)
           See curs_instr(3CURSES)

     mvwinstr(3XCURSES)
           See innstr(3XCURSES)

     mvwinswch(3CURSES)
           See curs_inswch(3CURSES)

     mvwinswstr(3CURSES)
           See curs_inswstr(3CURSES)

     mvwinwch(3CURSES)
           See curs_inwch(3CURSES)

     mvwinwchnstr(3CURSES)
           See curs_inwchstr(3CURSES)

     mvwinwchstr(3CURSES)
           See curs_inwchstr(3CURSES)

     mvwinwstr(3CURSES)
           See curs_inwstr(3CURSES)

     mvwinwstr(3XCURSES)
           See innwstr(3XCURSES)

     mvwprintw(3CURSES)
           See curs_printw(3CURSES)

     mvwprintw(3XCURSES)
           See mvprintw(3XCURSES)

     mvwscanw(3CURSES)
           See curs_scanw(3CURSES)

     mvwscanw(3XCURSES)
           See mvscanw(3XCURSES)

     mvwvline(3XCURSES)
           See hline(3XCURSES)

     mvwvline_set(3XCURSES)
           See hline_set(3XCURSES)

     nanosleep(3RT)
           high resolution sleep

     napms(3CURSES)
           See curs_kernel(3CURSES)

     napms(3XCURSES)
           sleep process for a specified length of time

     nc_perror(3NSL)
           See getnetconfig(3NSL)

     nc_sperror(3NSL)
           See getnetconfig(3NSL)

     ndbm(3C)
           database functions

     ndbm(3HEAD)
           definitions for ndbm database operations

     netdb(3HEAD)
           definitions for network database operations

     netdir(3NSL)
           generic transport name-to-address translation

     netdir_free(3NSL)
           See netdir(3NSL)

     netdir_getbyaddr(3NSL)
           See netdir(3NSL)

     netdir_getbyname(3NSL)
           See netdir(3NSL)

     netdir_mergeaddr(3NSL)
           See netdir(3NSL)

     netdir_options(3NSL)
           See netdir(3NSL)

     netdir_perror(3NSL)
           See netdir(3NSL)

     netdir_sperror(3NSL)
           See netdir(3NSL)

     netname2host(3NSL)
           See secure_rpc(3NSL)

     netname2user(3NSL)
           See secure_rpc(3NSL)

     newDmiOctetString(3DMI)
           create DmiOctetString in dynamic memory

     newDmiString(3DMI)
           create DmiString in dynamic memory

     new_field(3CURSES)
           See form_field_new(3CURSES)

     new_fieldtype(3CURSES)
           See form_fieldtype(3CURSES)

     new_form(3CURSES)
           See form_new(3CURSES)

     new_item(3CURSES)
           See menu_item_new(3CURSES)

     new_menu(3CURSES)
           See menu_new(3CURSES)

     new_page(3CURSES)
           See form_new_page(3CURSES)

     new_panel(3CURSES)
           See panel_new(3CURSES)

     newpad(3CURSES)
           See curs_pad(3CURSES)

     newpad(3XCURSES)
           create or refresh a pad or subpad

     newterm(3CURSES)
           See curs_initscr(3CURSES)

     newterm(3XCURSES)
           See initscr(3XCURSES)

     newwin(3CURSES)
           See curs_window(3CURSES)

     newwin(3XCURSES)
           See derwin(3XCURSES)

     nextafter(3M)
           next  representable  double-precision   floating-point
           number

     nextkey(3UCB)
           See dbm(3UCB)

     nftw(3C)
           See ftw(3C)

     ngettext(3C)
           See gettext(3C)

     nice(3UCB)
           change priority of a process

     nis_add(3NSL)
           See nis_names(3NSL)

     nis_add_entry(3NSL)
           See nis_tables(3NSL)

     nis_addmember(3NSL)
           See nis_groups(3NSL)

     nis_checkpoint(3NSL)
           See nis_ping(3NSL)

     nis_clone_object(3NSL)
           See nis_subr(3NSL)

     nis_creategroup(3NSL)
           See nis_groups(3NSL)

     nis_destroy_object(3NSL)
           See nis_subr(3NSL)

     nis_destroygroup(3NSL)
           See nis_groups(3NSL)

     nis_dir_cmp(3NSL)
           See nis_subr(3NSL)

     nis_domain_of(3NSL)
           See nis_subr(3NSL)

     nis_error(3NSL)
           display NIS+ error messages

     nis_first_entry(3NSL)
           See nis_tables(3NSL)

     nis_freenames(3NSL)
           See nis_subr(3NSL)

     nis_freeresult(3NSL)
           See nis_names(3NSL)

     nis_freeservlist(3NSL)
           See nis_server(3NSL)

     nis_freetags(3NSL)
           See nis_server(3NSL)

     nis_getnames(3NSL)
           See nis_subr(3NSL)

     nis_getservlist(3NSL)
           See nis_server(3NSL)

     nis_groups(3NSL)
           NIS+ group manipulation functions

     nis_ismember(3NSL)
           See nis_groups(3NSL)

     nis_leaf_of(3NSL)
           See nis_subr(3NSL)

     nis_lerror(3NSL)
           See nis_error(3NSL)

     nis_list(3NSL)
           See nis_tables(3NSL)

     nis_local_directory(3NSL)
           See nis_local_names(3NSL)

     nis_local_group(3NSL)
           See nis_local_names(3NSL)

     nis_local_host(3NSL)
           See nis_local_names(3NSL)

     nis_local_names(3NSL)
           NIS+ local names

     nis_local_principal(3NSL)
           See nis_local_names(3NSL)

     nis_lookup(3NSL)
           See nis_names(3NSL)

     nis_mkdir(3NSL)
           See nis_server(3NSL)

     nis_modify(3NSL)
           See nis_names(3NSL)

     nis_modify_entry(3NSL)
           See nis_tables(3NSL)

     nis_name_of(3NSL)
           See nis_subr(3NSL)

     nis_names(3NSL)
           NIS+ namespace functions

     nis_next_entry(3NSL)
           See nis_tables(3NSL)

     nis_objects(3NSL)
           NIS+ object formats

     nis_perror(3NSL)
           See nis_error(3NSL)

     nis_ping(3NSL)
           NIS+ log administration functions

     nis_print_group_entry(3NSL)
           See nis_groups(3NSL)

     nis_print_object(3NSL)
           See nis_subr(3NSL)

     nis_remove(3NSL)
           See nis_names(3NSL)

     nis_remove_entry(3NSL)
           See nis_tables(3NSL)

     nis_removemember(3NSL)
           See nis_groups(3NSL)

     nis_rmdir(3NSL)
           See nis_server(3NSL)

     nis_server(3NSL)
           miscellaneous NIS+ functions

     nis_servstate(3NSL)
           See nis_server(3NSL)

     nis_sperrno(3NSL)
           See nis_error(3NSL)

     nis_sperror(3NSL)
           See nis_error(3NSL)

     nis_sperror_r(3NSL)
           See nis_error(3NSL)

     nis_stats(3NSL)
           See nis_server(3NSL)

     nis_subr(3NSL)
           NIS+ subroutines

     nis_tables(3NSL)
           NIS+ table functions

     nis_verifygroup(3NSL)
           See nis_groups(3NSL)

     nl(3CURSES)
           See curs_outopts(3CURSES)

     nl(3XCURSES)
           enable/disable newline control

     nl_langinfo(3C)
           language information

     nl_types(3HEAD)
           native language data types

     nlist(3ELF)
           get entries from name list

     nlist(3UCB)
           get entries from symbol table

     nlsgetcall(3NSL)
           get client's data passed via the listener

     nlsprovider(3NSL)
           get name of transport provider

     nlsrequest(3NSL)
           format and send listener service request message

     nocbreak(3CURSES)
           See curs_inopts(3CURSES)

     nocbreak(3XCURSES)
           See cbreak(3XCURSES)

     nodelay(3CURSES)
           See curs_inopts(3CURSES)

     nodelay(3XCURSES)
           set blocking or non-blocking read

     noecho(3CURSES)
           See curs_inopts(3CURSES)

     noecho(3XCURSES)
           See echo(3XCURSES)

     nonl(3CURSES)
           See curs_outopts(3CURSES)

     nonl(3XCURSES)
           See nl(3XCURSES)

     noqiflush(3CURSES)
           See curs_inopts(3CURSES)

     noqiflush(3XCURSES)
           control flush of input and output on interrupt

     noraw(3CURSES)
           See curs_inopts(3CURSES)

     noraw(3XCURSES)
           See cbreak(3XCURSES)

     notimeout(3CURSES)
           See curs_inopts(3CURSES)

     notimeout(3XCURSES)
           set timed blocking or non-blocking read

     nrand48(3C)
           See drand48(3C)

     ntohl(3SOCKET)
           See byteorder(3SOCKET)

     ntohl(3XNET)
           See htonl(3XNET)

     ntohs(3SOCKET)
           See byteorder(3SOCKET)

     ntohs(3XNET)
           See htonl(3XNET)

     nvlist_add_boolean(3NVPAIR)
           add new name-value pair to nvlist_t

     nvlist_add_byte(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_byte_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_int16(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_int16_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_int32(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_int32_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_int64(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_int64_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_string(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_string_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_uint16(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_uint16_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_uint32(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_uint32_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_uint64(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_add_uint64_array(3NVPAIR)
           See nvlist_add_boolean(3NVPAIR)

     nvlist_alloc(3NVPAIR)
           manage a name-value pair list

     nvlist_dup(3NVPAIR)
           See nvlist_alloc(3NVPAIR)

     nvlist_free(3NVPAIR)
           See nvlist_alloc(3NVPAIR)

     nvlist_lookup_boolean(3NVPAIR)
           match name and type indicated by  the  interface  name
           and retrieve data value

     nvlist_lookup_byte(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_byte_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_int16(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_int16_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_int32(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_int32_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_int64(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_int64_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_string(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_string_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_uint16(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_uint16_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_uint32(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_uint32_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_uint64(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_lookup_uint64_array(3NVPAIR)
           See nvlist_lookup_boolean(3NVPAIR)

     nvlist_next_nvpair(3NVPAIR)
           return data regarding name-value pairs

     nvlist_pack(3NVPAIR)
           See nvlist_alloc(3NVPAIR)

     nvlist_remove(3NVPAIR)
           remove name-value pairs

     nvlist_remove_all(3NVPAIR)
           See nvlist_remove(3NVPAIR)

     nvlist_size(3NVPAIR)
           See nvlist_alloc(3NVPAIR)

     nvlist_unpack(3NVPAIR)
           See nvlist_alloc(3NVPAIR)

     nvpair_name(3NVPAIR)
           See nvlist_next_nvpair(3NVPAIR)

     nvpair_type(3NVPAIR)
           See nvlist_next_nvpair(3NVPAIR)

     nvpair_value_byte(3NVPAIR)
           retrieve value from a name-value pair

     nvpair_value_byte_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_int16(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_int16_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_int32(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_int32_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_int64(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_int64_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_string(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_string_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_uint16(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_uint16_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_uint32(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_uint32_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_uint64(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     nvpair_value_uint64_array(3NVPAIR)
           See nvpair_value_byte(3NVPAIR)

     offsetof(3C)
           offset of structure member

     opendir(3C)
           open directory

     openlog(3C)
           See syslog(3C)

     openpl(3PLOT)
           See plot(3PLOT)

     openvt(3PLOT)
           See plot(3PLOT)

     overlay(3CURSES)
           See curs_overlay(3CURSES)

     overlay(3XCURSES)
           copy overlapped windows

     overwrite(3CURSES)
           See curs_overlay(3CURSES)

     overwrite(3XCURSES)
           See overlay(3XCURSES)

     p2close(3GEN)
           See p2open(3GEN)

     p2open(3GEN)
           open, close pipes to and from a command

     pair_content(3CURSES)
           See curs_color(3CURSES)

     pair_content(3XCURSES)
           See can_change_color(3XCURSES)

     pam(3PAM)
           PAM (Pluggable Authentication Module)

     pam_acct_mgmt(3PAM)
           perform PAM account validation procedures

     pam_authenticate(3PAM)
           perform authentication within the PAM framework

     pam_chauthtok(3PAM)
           perform password  related  functions  within  the  PAM
           framework

     pam_close_session(3PAM)
           See pam_open_session(3PAM)

     pam_end(3PAM)
           See pam_start(3PAM)

     pam_get_data(3PAM)
           See pam_set_data(3PAM)

     pam_get_item(3PAM)
           See pam_set_item(3PAM)

     pam_get_user(3PAM)
           PAM routine to retrieve user name

     pam_getenv(3PAM)
           returns the value for a PAM environment name

     pam_getenvlist(3PAM)
           returns a list of all the PAM environment variables

     pam_open_session(3PAM)
           perform PAM session creation  and  termination  opera-
           tions

     pam_putenv(3PAM)
           change or add a value to the PAM environment

     pam_set_data(3PAM)
           PAM routines to maintain module specific state

     pam_set_item(3PAM)
           authentication information routines for PAM

     pam_setcred(3PAM)
           modify/delete user credentials for  an  authentication
           service

     pam_sm(3PAM)
           PAM Service Module APIs

     pam_sm_acct_mgmt(3PAM)
           service provider implementation for pam_acct_mgmt

     pam_sm_authenticate(3PAM)
           service provider implementation for pam_authenticate

     pam_sm_chauthtok(3PAM)
           service provider implementation for pam_chauthtok

     pam_sm_close_session(3PAM)
           See pam_sm_open_session(3PAM)

     pam_sm_open_session(3PAM)
           service provider implementation  for  pam_open_session
           and pam_close_session

     pam_sm_setcred(3PAM)
           service provider implementation for pam_setcred

     pam_start(3PAM)
           authentication transaction routines for PAM

     pam_strerror(3PAM)
           get PAM error message string

     panel_above(3CURSES)
           panels deck traversal primitives

     panel_below(3CURSES)
           See panel_above(3CURSES)

     panel_hidden(3CURSES)
           See panel_show(3CURSES)

     panel_move(3CURSES)
           move a panels window on the virtual screen

     panel_new(3CURSES)
           create and destroy panels

     panel_show(3CURSES)
           panels deck manipulation routines

     panel_top(3CURSES)
           panels deck manipulation routines

     panel_update(3CURSES)
           panels virtual screen refresh routine

     panel_userptr(3CURSES)
           associate application data with a panels panel

     panel_window(3CURSES)
           get or set the current window of a panels panel

     panels(3CURSES)
           character based panels package

     pathfind(3GEN)
           search for named file in named directories

     pclose(3C)
           See popen(3C)

     pctx_capture(3CPC)
           process context library

     pctx_create(3CPC)
           See pctx_capture(3CPC)

     pctx_release(3CPC)
           See pctx_capture(3CPC)

     pctx_run(3CPC)
           See pctx_capture(3CPC)

     pctx_set_events(3CPC)
           associate callbacks with process events

     pecho_wchar(3XCURSES)
           See pechochar(3XCURSES)

     pechochar(3CURSES)
           See curs_pad(3CURSES)

     pechochar(3XCURSES)
           add character and refresh window

     pechowchar(3CURSES)
           See curs_pad(3CURSES)

     perror(3C)
           print system error messages

     pfmt(3C)
           display error message in standard format

     picl_get_first_prop(3PICL)
           get a property handle of a node

     picl_get_next_by_col(3PICL)
           See picl_get_next_by_row(3PICL)

     picl_get_next_by_row(3PICL)
           access a table property

     picl_get_next_prop(3PICL)
           See picl_get_first_prop(3PICL)

     picl_get_prop_by_name(3PICL)
           get the handle of the property by name

     picl_get_propinfo(3PICL)
           get the information about a property

     picl_get_propinfo_by_name(3PICL)
           get property information and handle of named property

     picl_get_propval(3PICL)
           get the value of a property

     picl_get_propval_by_name(3PICL)
           See picl_get_propval(3PICL)

     picl_get_root(3PICL)
           get the root handle of the PICL tree

     picl_initialize(3PICL)
           initiate a session with the PICL daemon

     picl_set_propval(3PICL)
           set the value of a property to the specified value

     picl_set_propval_by_name(3PICL)
           See picl_set_propval(3PICL)

     picl_shutdown(3PICL)
           shutdown the session with the PICL daemon

     picl_strerror(3PICL)
           get error message string

     picl_wait(3PICL)
           wait for PICL tree to refresh

     picl_walk_tree_by_class(3PICL)
           walk subtree by class

     picld_log(3PICLTREE)
           log a message in system log

     picld_plugin_register(3PICLTREE)
           register plug-in with the daemon

     plock(3C)
           lock or unlock into memory process, text, or data

     plot(3PLOT)
           graphics interface

     pmap_getmaps(3NSL)
           See rpc_soc(3NSL)

     pmap_getport(3NSL)
           See rpc_soc(3NSL)

     pmap_rmtcall(3NSL)
           See rpc_soc(3NSL)

     pmap_set(3NSL)
           See rpc_soc(3NSL)

     pmap_unset(3NSL)
           See rpc_soc(3NSL)

     pnoutrefresh(3CURSES)
           See curs_pad(3CURSES)

     pnoutrefresh(3XCURSES)
           See newpad(3XCURSES)

     point(3PLOT)
           See plot(3PLOT)

     pool_associate(3POOL)
           resource pool manipulation functions

     pool_component_info(3POOL)
           resource pool component functions

     pool_component_to_elem(3POOL)
           resource pool element-related functions

     pool_conf_alloc(3POOL)
           manipulate resource pool configurations

     pool_conf_close(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_commit(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_export(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_free(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_info(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_location(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_open(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_remove(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_rollback(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_status(3POOL)
           See pool_conf_alloc(3POOL)

     pool_conf_to_elem(3POOL)
           See pool_component_to_elem(3POOL)

     pool_conf_validate(3POOL)
           See pool_conf_alloc(3POOL)

     pool_create(3POOL)
           See pool_associate(3POOL)

     pool_destroy(3POOL)
           See pool_associate(3POOL)

     pool_dissociate(3POOL)
           See pool_associate(3POOL)

     pool_dynamic_location(3POOL)
           resource pool framework functions

     pool_error(3POOL)
           error interface to resource pools library

     pool_get_binding(3POOL)
           set and query process to resource pool bindings

     pool_get_owning_resource(3POOL)
           See pool_component_info(3POOL)

     pool_get_pool(3POOL)
           retrieve resource pool configuration elements

     pool_get_property(3POOL)
           resource pool element property manipulation

     pool_get_resource(3POOL)
           See pool_get_pool(3POOL)

     pool_get_resource_binding(3POOL)
           See pool_get_binding(3POOL)

     pool_info(3POOL)
           See pool_associate(3POOL)

     pool_put_property(3POOL)
           See pool_get_property(3POOL)

     pool_query_components(3POOL)
           See pool_get_pool(3POOL)

     pool_query_pool_resources(3POOL)
           See pool_associate(3POOL)

     pool_query_pools(3POOL)
           See pool_get_pool(3POOL)

     pool_query_resource_components(3POOL)
           See pool_resource_create(3POOL)

     pool_query_resources(3POOL)
           See pool_get_pool(3POOL)

     pool_resource_create(3POOL)
           resource pool resource manipulation functions

     pool_resource_destroy(3POOL)
           See pool_resource_create(3POOL)

     pool_resource_info(3POOL)
           See pool_resource_create(3POOL)

     pool_resource_to_elem(3POOL)
           See pool_component_to_elem(3POOL)

     pool_resource_transfer(3POOL)
           See pool_resource_create(3POOL)

     pool_resource_xtransfer(3POOL)
           See pool_resource_create(3POOL)

     pool_rm_property(3POOL)
           See pool_get_property(3POOL)

     pool_set_binding(3POOL)
           See pool_get_binding(3POOL)

     pool_static_location(3POOL)
           See pool_dynamic_location(3POOL)

     pool_strerror(3POOL)
           See pool_error(3POOL)

     pool_to_elem(3POOL)
           See pool_component_to_elem(3POOL)

     pool_value_alloc(3POOL)
           resource pool property value manipulation functions

     pool_value_free(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_bool(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_double(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_int64(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_name(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_string(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_type(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_get_uint64(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_set_bool(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_set_double(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_set_int64(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_set_name(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_set_string(3POOL)
           See pool_value_alloc(3POOL)

     pool_value_set_uint64(3POOL)
           See pool_value_alloc(3POOL)

     pool_version(3POOL)
           See pool_dynamic_location(3POOL)

     pool_walk_components(3POOL)
           walk objects within resource pool configurations

     pool_walk_pools(3POOL)
           See pool_walk_components(3POOL)

     pool_walk_properties(3POOL)
           See pool_get_property(3POOL)

     pool_walk_resources(3POOL)
           See pool_walk_components(3POOL)

     popen(3C)
           initiate a pipe to or from a process

     pos_form_cursor(3CURSES)
           See form_cursor(3CURSES)

     pos_menu_cursor(3CURSES)
           See menu_cursor(3CURSES)

     post_form(3CURSES)
           See form_post(3CURSES)

     post_menu(3CURSES)
           See menu_post(3CURSES)

     pow(3M)
           power function

     prefresh(3CURSES)
           See curs_pad(3CURSES)

     prefresh(3XCURSES)
           See newpad(3XCURSES)

     printDmiAttributeValues(3DMI)
           print data in input DmiAttributeValues list

     printDmiDataUnion(3DMI)
           print data in input data union

     printDmiString(3DMI)
           print a DmiString

     printf(3C)
           print formatted output

     printf(3UCB)
           formatted output conversion

     printstack(3C)
           See walkcontext(3C)

     printw(3CURSES)
           See curs_printw(3CURSES)

     printw(3XCURSES)
           See mvprintw(3XCURSES)

     proc_service(3PROC)
           process service interfaces

     project_walk(3PROJECT)
           visit active project IDs on current system

     ps_kill(3PROC)
           See ps_pstop(3PROC)

     ps_lcontinue(3PROC)
           See ps_pstop(3PROC)

     ps_lgetfpregs(3PROC)
           See ps_lgetregs(3PROC)

     ps_lgetregs(3PROC)
           routines that access the target  process  register  in
           libthread_db

     ps_lgetxregs(3PROC)
           See ps_lgetregs(3PROC)

     ps_lgetxregsize(3PROC)
           See ps_lgetregs(3PROC)

     ps_lrolltoaddr(3PROC)
           See ps_pstop(3PROC)

     ps_lsetfpregs(3PROC)
           See ps_lgetregs(3PROC)

     ps_lsetregs(3PROC)
           See ps_lgetregs(3PROC)

     ps_lsetxregs(3PROC)
           See ps_lgetregs(3PROC)

     ps_lstop(3PROC)
           See ps_pstop(3PROC)

     ps_pcontinue(3PROC)
           See ps_pstop(3PROC)

     ps_pdread(3PROC)
           See ps_pread(3PROC)

     ps_pdwrite(3PROC)
           See ps_pread(3PROC)

     ps_pglobal_lookup(3PROC)
           look up a symbol in  the  symbol  table  of  the  load
           object in the target process

     ps_pglobal_sym(3PROC)
           See ps_pglobal_lookup(3PROC)

     ps_pread(3PROC)
           interfaces in libthread_db that target process  memory
           access

     ps_pstop(3PROC)
           process and LWP control in libthread_db

     ps_ptread(3PROC)
           See ps_pread(3PROC)

     ps_ptwrite(3PROC)
           See ps_pread(3PROC)

     ps_pwrite(3PROC)
           See ps_pread(3PROC)

     pset_getloadavg(3C)
           get system load averages for a processor set

     psiginfo(3C)
           See psignal(3C)

     psignal(3C)
           system signal messages

     psignal(3UCB)
           system signal messages

     pthread_atfork(3C)
           register fork handlers

     pthread_attr_destroy(3THR)
           See pthread_attr_init(3THR)

     pthread_attr_getdetachstate(3THR)
           get or set detachstate attribute

     pthread_attr_getguardsize(3THR)
           get or set the thread guardsize attribute

     pthread_attr_getinheritsched(3THR)
           get or set inheritsched attribute

     pthread_attr_getschedparam(3THR)
           get or set schedparam attribute

     pthread_attr_getschedpolicy(3THR)
           get or set schedpolicy attribute

     pthread_attr_getscope(3THR)
           get or set contentionscope attribute

     pthread_attr_getstackaddr(3THR)
           get or set stackaddr attribute

     pthread_attr_getstacksize(3THR)
           get or set stacksize attribute

     pthread_attr_init(3THR)
           initialize or destroy threads attribute object

     pthread_attr_setdetachstate(3THR)
           See pthread_attr_getdetachstate(3THR)

     pthread_attr_setguardsize(3THR)
           See pthread_attr_getguardsize(3THR)

     pthread_attr_setinheritsched(3THR)
           See pthread_attr_getinheritsched(3THR)

     pthread_attr_setschedparam(3THR)
           See pthread_attr_getschedparam(3THR)

     pthread_attr_setschedpolicy(3THR)
           See pthread_attr_getschedpolicy(3THR)

     pthread_attr_setscope(3THR)
           See pthread_attr_getscope(3THR)

     pthread_attr_setstackaddr(3THR)
           See pthread_attr_getstackaddr(3THR)

     pthread_attr_setstacksize(3THR)
           See pthread_attr_getstacksize(3THR)

     pthread_cancel(3THR)
           cancel execution of a thread

     pthread_cleanup_pop(3THR)
           pop a thread cancellation cleanup handler

     pthread_cleanup_push(3THR)
           push a thread cancellation cleanup handler

     pthread_cond_broadcast(3THR)
           See pthread_cond_signal(3THR)

     pthread_cond_destroy(3THR)
           See pthread_cond_init(3THR)

     pthread_cond_init(3THR)
           initialize or destroy condition variables

     pthread_cond_reltimedwait_np(3THR)
           See pthread_cond_wait(3THR)

     pthread_cond_signal(3THR)
           signal or broadcast a condition

     pthread_cond_timedwait(3THR)
           See pthread_cond_wait(3THR)

     pthread_cond_wait(3THR)
           wait on a condition

     pthread_condattr_destroy(3THR)
           See pthread_condattr_init(3THR)

     pthread_condattr_getpshared(3THR)
           get  or  set  the  process-shared  condition  variable
           attributes

     pthread_condattr_init(3THR)
           initialize or destroy  condition  variable  attributes
           object

     pthread_condattr_setpshared(3THR)
           See pthread_condattr_getpshared(3THR)

     pthread_create(3THR)
           create a thread

     pthread_detach(3THR)
           detach a thread

     pthread_equal(3THR)
           compare thread IDs

     pthread_exit(3THR)
           terminate calling thread

     pthread_getconcurrency(3THR)
           get or set level of concurrency

     pthread_getschedparam(3THR)
           access dynamic thread scheduling parameters

     pthread_getspecific(3THR)
           manage thread-specific data

     pthread_join(3THR)
           wait for thread termination

     pthread_key_create(3THR)
           create thread-specific data key

     pthread_key_delete(3THR)
           delete thread-specific data key

     pthread_kill(3THR)
           send a signal to a thread

     pthread_mutex_consistent_np(3THR)
           make a mutex consistent after owner death

     pthread_mutex_destroy(3THR)
           See pthread_mutex_init(3THR)

     pthread_mutex_getprioceiling(3THR)
           change the priority ceiling of a mutex

     pthread_mutex_init(3THR)
           initialize or destroy a mutex

     pthread_mutex_lock(3THR)
           lock or unlock a mutex

     pthread_mutex_setprioceiling(3THR)
           See pthread_mutex_getprioceiling(3THR)

     pthread_mutex_trylock(3THR)
           See pthread_mutex_lock(3THR)

     pthread_mutex_unlock(3THR)
           See pthread_mutex_lock(3THR)

     pthread_mutexattr_destroy(3THR)
           See pthread_mutexattr_init(3THR)

     pthread_mutexattr_getprioceiling(3THR)
           get and set prioceiling attribute of  mutex  attribute
           object

     pthread_mutexattr_getprotocol(3THR)
           get and set  protocol  attribute  of  mutex  attribute
           object

     pthread_mutexattr_getpshared(3THR)
           get and set process-shared attribute

     pthread_mutexattr_getrobust_np(3THR)
           get or set robustness  attribute  of  mutex  attribute
           object

     pthread_mutexattr_gettype(3THR)
           get or set a mutex type

     pthread_mutexattr_init(3THR)
           initialize and destroy mutex attributes object

     pthread_mutexattr_setprioceiling(3THR)
           See pthread_mutexattr_getprioceiling(3THR)

     pthread_mutexattr_setprotocol(3THR)
           See pthread_mutexattr_getprotocol(3THR)

     pthread_mutexattr_setpshared(3THR)
           See pthread_mutexattr_getpshared(3THR)

     pthread_mutexattr_setrobust_np(3THR)
           See pthread_mutexattr_getrobust_np(3THR)

     pthread_mutexattr_settype(3THR)
           See pthread_mutexattr_gettype(3THR)

     pthread_once(3THR)
           initialize dynamic package

     pthread_rwlock_destroy(3THR)
           See pthread_rwlock_init(3THR)

     pthread_rwlock_init(3THR)
           initialize or destroy a read-write lock object

     pthread_rwlock_rdlock(3THR)
           lock or attempt to lock a read-write lock  object  for
           reading

     pthread_rwlock_tryrdlock(3THR)
           See pthread_rwlock_rdlock(3THR)

     pthread_rwlock_trywrlock(3THR)
           See pthread_rwlock_wrlock(3THR)

     pthread_rwlock_unlock(3THR)
           unlock a read-write lock object

     pthread_rwlock_wrlock(3THR)
           lock or attempt to lock a read-write lock  object  for
           writing

     pthread_rwlockattr_destroy(3THR)
           See pthread_rwlockattr_init(3THR)

     pthread_rwlockattr_getpshared(3THR)
           get or set process-shared attribute of read-write lock
           attributes object

     pthread_rwlockattr_init(3THR)
           initialize  or  destroy  read-write  lock   attributes
           object

     pthread_rwlockattr_setpshared(3THR)
           See pthread_rwlockattr_getpshared(3THR)

     pthread_self(3THR)
           get calling thread's ID

     pthread_setcancelstate(3THR)
           enable or disable cancellation

     pthread_setcanceltype(3THR)
           set the cancellation type of a thread

     pthread_setconcurrency(3THR)
           See pthread_getconcurrency(3THR)

     pthread_setschedparam(3THR)
           See pthread_getschedparam(3THR)

     pthread_setspecific(3THR)
           See pthread_getspecific(3THR)

     pthread_sigmask(3THR)
           change or examine calling thread's signal mask

     pthread_testcancel(3THR)
           create cancellation point in the calling thread

     pthreads(3THR)
           See threads(3THR)

     ptree_add_node(3PICLTREE)
           add or delete node to or from tree

     ptree_add_prop(3PICLTREE)
           add or delete a property

     ptree_add_row_to_table(3PICLTREE)
           See ptree_create_table(3PICLTREE)

     ptree_create_and_add_node(3PICLTREE)
           create and add node to tree and return node handle

     ptree_create_and_add_prop(3PICLTREE)
           create and add property to node  and  return  property
           handle

     ptree_create_node(3PICLTREE)
           create or destroy a node

     ptree_create_prop(3PICLTREE)
           create or destroy a property

     ptree_create_table(3PICLTREE)
           create a table object

     ptree_delete_node(3PICLTREE)
           See ptree_add_node(3PICLTREE)

     ptree_delete_prop(3PICLTREE)
           See ptree_add_prop(3PICLTREE)

     ptree_destroy_node(3PICLTREE)
           See ptree_create_node(3PICLTREE)

     ptree_destroy_prop(3PICLTREE)
           See ptree_create_prop(3PICLTREE)

     ptree_find_node(3PICLTREE)
           find node with given property and value

     ptree_get_first_prop(3PICLTREE)
           get a property handle of the node

     ptree_get_next_by_col(3PICLTREE)
           See ptree_get_next_by_row(3PICLTREE)

     ptree_get_next_by_row(3PICLTREE)
           access a table property

     ptree_get_next_prop(3PICLTREE)
           See ptree_get_first_prop(3PICLTREE)

     ptree_get_node_by_path(3PICLTREE)
           get handle of node specified by PICL tree path

     ptree_get_prop_by_name(3PICLTREE)
           get a property handle by name

     ptree_get_propinfo(3PICLTREE)
           get property information

     ptree_get_propinfo_by_name(3PICLTREE)
           get property information and handle of named property

     ptree_get_propval(3PICLTREE)
           get the value of a property

     ptree_get_propval_by_name(3PICLTREE)
           See ptree_get_propval(3PICLTREE)

     ptree_get_root(3PICLTREE)
           get the root node handle

     ptree_init_propinfo(3PICLTREE)
           initialize ptree_propinfo_t structure

     ptree_post_event(3PICLTREE)
           post a PICL event

     ptree_register_handler(3PICLTREE)
           register a handler for the event

     ptree_unregister_handler(3PICLTREE)
           unregister the event handler for the event

     ptree_update_propval(3PICLTREE)
           update a property value

     ptree_update_propval_by_name(3PICLTREE)
           See ptree_update_propval(3PICLTREE)

     ptree_walk_tree_by_class(3PICLTREE)
           walk subtree by class

     ptsname(3C)
           get name of the slave pseudo-terminal device

     publickey(3NSL)
           See getpublickey(3NSL)

     putc(3C)
           See fputc(3C)

     putc_unlocked(3C)
           See fputc(3C)

     putchar(3C)
           See fputc(3C)

     putchar_unlocked(3C)
           See fputc(3C)

     putenv(3C)
           change or add value to environment

     putmntent(3C)
           See getmntent(3C)

     putp(3CURSES)
           See curs_terminfo(3CURSES)

     putp(3XCURSES)
           apply padding information and output string

     putpwent(3C)
           write password file entry

     puts(3C)
           put a string on a stream

     putspent(3C)
           write shadow password file entry

     pututline(3C)
           See getutent(3C)

     pututxline(3C)
           See getutxent(3C)

     putw(3C)
           See fputc(3C)

     putwc(3C)
           See fputwc(3C)

     putwchar(3C)
           See fputwc(3C)

     putwin(3CURSES)
           See curs_util(3CURSES)

     putwin(3XCURSES)
           See getwin(3XCURSES)

     putws(3C)
           convert a string of Process  Code  characters  to  EUC
           characters

     qeconvert(3C)
           See econvert(3C)

     qfconvert(3C)
           See econvert(3C)

     qgconvert(3C)
           See econvert(3C)

     qiflush(3CURSES)
           See curs_inopts(3CURSES)

     qiflush(3XCURSES)
           See noqiflush(3XCURSES)

     qsort(3C)
           quick sort

     quadruple_to_decimal(3C)
           See floating_to_decimal(3C)

     rac_drop(3RAC)
           See rpc_rac(3RAC)

     rac_poll(3RAC)
           See rpc_rac(3RAC)

     rac_recv(3RAC)
           See rpc_rac(3RAC)

     rac_send(3RAC)
           See rpc_rac(3RAC)

     raise(3C)
           send signal to program

     rand(3C)
           simple random-number generator

     rand(3UCB)
           simple random number generator

     rand_r(3C)
           See rand(3C)

     random(3C)
           pseudorandom number functions

     raw(3CURSES)
           See curs_inopts(3CURSES)

     raw(3XCURSES)
           See cbreak(3XCURSES)

     rcmd(3SOCKET)
           routines for returning a stream to a remote command

     rcmd_af(3SOCKET)
           See rcmd(3SOCKET)

     rctl_walk(3C)
           visit registered rctls on current system

     rctlblk_get_enforced_value(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_firing_time(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_global_action(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_global_flags(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_local_action(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_local_flags(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_privilege(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_recipient_pid(3C)
           See rctlblk_set_value(3C)

     rctlblk_get_value(3C)
           See rctlblk_set_value(3C)

     rctlblk_set_local_action(3C)
           See rctlblk_set_value(3C)

     rctlblk_set_local_flags(3C)
           See rctlblk_set_value(3C)

     rctlblk_set_privilege(3C)
           See rctlblk_set_value(3C)

     rctlblk_set_value(3C)
           manipulate resource control blocks

     rctlblk_size(3C)
           See rctlblk_set_value(3C)

     rd_delete(3EXT)
           See rtld_db(3EXT)

     rd_errstr(3EXT)
           See rtld_db(3EXT)

     rd_event_addr(3EXT)
           See rtld_db(3EXT)

     rd_event_enable(3EXT)
           See rtld_db(3EXT)

     rd_event_getmsg(3EXT)
           See rtld_db(3EXT)

     rd_init(3EXT)
           See rtld_db(3EXT)

     rd_loadobj_iter(3EXT)
           See rtld_db(3EXT)

     rd_log(3EXT)
           See rtld_db(3EXT)

     rd_new(3EXT)
           See rtld_db(3EXT)

     rd_objpad_enable(3EXT)
           See rtld_db(3EXT)

     rd_plt_resolution(3EXT)
           See rtld_db(3EXT)

     rd_reset(3EXT)
           See rtld_db(3EXT)

     re_comp(3C)
           compile and execute regular expressions

     re_exec(3C)
           See re_comp(3C)

     read_vtoc(3EXT)
           read and write a disk's VTOC

     readdir(3C)
           read directory

     readdir(3UCB)
           read a directory entry

     readdir_r(3C)
           See readdir(3C)

     realloc(3C)
           See malloc(3C)

     realloc(3MALLOC)
           See malloc(3MALLOC)

     realpath(3C)
           resolve pathname

     reboot(3C)
           reboot system or halt processor

     recv(3SOCKET)
           receive a message from a socket

     recv(3XNET)
           receive a message from a connected socket

     recvfrom(3SOCKET)
           See recv(3SOCKET)

     recvfrom(3XNET)
           receive a message from a socket

     recvmsg(3SOCKET)
           See recv(3SOCKET)

     recvmsg(3XNET)
           receive a message from a socket

     redrawwin(3CURSES)
           See curs_refresh(3CURSES)

     redrawwin(3XCURSES)
           redraw screen or portion of screen

     refresh(3CURSES)
           See curs_refresh(3CURSES)

     refresh(3XCURSES)
           See doupdate(3XCURSES)

     reg_ci_callback(3DMI)
           provide a component instrumentation with  a  transient
           program number

     regcmp(3C)
           compile and execute regular expression

     regcomp(3C)
           regular expression matching

     regerror(3C)
           See regcomp(3C)

     regex(3C)
           See regcmp(3C)

     regexec(3C)
           See regcomp(3C)

     regexpr(3GEN)
           regular expression compile and match routines

     regfree(3C)
           See regcomp(3C)

     registerrpc(3NSL)
           See rpc_soc(3NSL)

     remainder(3M)
           remainder function

     remove(3C)
           remove file

     remque(3C)
           See insque(3C)

     replace_panel(3CURSES)
           See panel_window(3CURSES)

     res_hostalias(3RESOLV)
           See resolver(3RESOLV)

     res_init(3RESOLV)
           See resolver(3RESOLV)

     res_mkquery(3RESOLV)
           See resolver(3RESOLV)

     res_nclose(3RESOLV)
           See resolver(3RESOLV)

     res_ninit(3RESOLV)
           See resolver(3RESOLV)

     res_nmkquery(3RESOLV)
           See resolver(3RESOLV)

     res_nquery(3RESOLV)
           See resolver(3RESOLV)

     res_nquerydomain(3RESOLV)
           See resolver(3RESOLV)

     res_nsearch(3RESOLV)
           See resolver(3RESOLV)

     res_nsend(3RESOLV)
           See resolver(3RESOLV)

     res_nsendsigned(3RESOLV)
           See resolver(3RESOLV)

     res_query(3RESOLV)
           See resolver(3RESOLV)

     res_search(3RESOLV)
           See resolver(3RESOLV)

     res_send(3RESOLV)
           See resolver(3RESOLV)

     reset_prog_mode(3CURSES)
           See curs_kernel(3CURSES)

     reset_prog_mode(3XCURSES)
           See def_prog_mode(3XCURSES)

     reset_shell_mode(3CURSES)
           See curs_kernel(3CURSES)

     reset_shell_mode(3XCURSES)
           See def_prog_mode(3XCURSES)

     resetmnttab(3C)
           See getmntent(3C)

     resetty(3CURSES)
           See curs_kernel(3CURSES)

     resetty(3XCURSES)
           restore/save terminal modes

     resolver(3RESOLV)
           resolver routines

     restartterm(3CURSES)
           See curs_terminfo(3CURSES)

     restartterm(3XCURSES)
           See del_curterm(3XCURSES)

     rewind(3C)
           reset file position indicator in a stream

     rewinddir(3C)
           reset position of directory stream to the beginning of
           a directory

     rexec(3SOCKET)
           return stream to a remote command

     rexec_af(3SOCKET)
           See rexec(3SOCKET)

     rindex(3C)
           See index(3C)

     rint(3M)
           round-to-nearest integral value

     ripoffline(3CURSES)
           See curs_kernel(3CURSES)

     ripoffline(3XCURSES)
           reserve screen line for dedicated purpose

     rmdirp(3GEN)
           See mkdirp(3GEN)

     rnusers(3RPC)
           See rusers(3RPC)

     rpc(3NSL)
           library routines for remote procedure calls

     rpc_broadcast(3NSL)
           See rpc_clnt_calls(3NSL)

     rpc_broadcast_exp(3NSL)
           See rpc_clnt_calls(3NSL)

     rpc_call(3NSL)
           See rpc_clnt_calls(3NSL)

     rpc_clnt_auth(3NSL)
           library routines for client side remote procedure call
           authentication

     rpc_clnt_calls(3NSL)
           library routines for client side calls

     rpc_clnt_create(3NSL)
           library routines for dealing with creation and manipu-
           lation of CLIENT handles

     rpc_control(3NSL)
           library routine for manipulating global RPC attributes
           for client and server applications

     rpc_createerr(3NSL)
           See rpc_clnt_create(3NSL)

     rpc_gss_get_error(3NSL)
           get error codes on failure

     rpc_gss_get_mech_info(3NSL)
           See rpc_gss_get_mechanisms(3NSL)

     rpc_gss_get_mechanisms(3NSL)
           get information on mechanisms and RPC version

     rpc_gss_get_principal_name(3NSL)
           Get principal names at server

     rpc_gss_get_versions(3NSL)
           See rpc_gss_get_mechanisms(3NSL)

     rpc_gss_getcred(3NSL)
           get credentials of client

     rpc_gss_is_installed(3NSL)
           See rpc_gss_get_mechanisms(3NSL)

     rpc_gss_max_data_length(3NSL)
           get maximum data length for  transmission

     rpc_gss_mech_to_oid(3NSL)
           map mechanism, QOP strings to non-string values

     rpc_gss_qop_to_num(3NSL)
           See rpc_gss_mech_to_oid(3NSL)

     rpc_gss_seccreate(3NSL)
           create a security context using the RPCSEC_GSS  proto-
           col

     rpc_gss_set_callback(3NSL)
           specify callback for context

     rpc_gss_set_defaults(3NSL)
           change service, QOP for a session

     rpc_gss_set_svc_name(3NSL)
           send a principal name to a server

     rpc_gss_svc_max_data_length(3NSL)
           See rpc_gss_max_data_length(3NSL)

     rpc_rac(3RAC)
           remote asynchronous calls

     rpc_reg(3NSL)
           See rpc_svc_reg(3NSL)

     rpc_soc(3NSL)
           obsolete library routines for RPC

     rpc_svc_calls(3NSL)
           library routines for RPC servers

     rpc_svc_create(3NSL)
           library routines for the creation of server handles

     rpc_svc_err(3NSL)
           library routines for server side remote procedure call
           errors

     rpc_svc_input(3NSL)
           declare or remove a callback on a file descriptor

     rpc_svc_reg(3NSL)
           library routines for registering servers

     rpc_xdr(3NSL)
           XDR library routines for remote procedure calls

     rpcb_getaddr(3NSL)
           See rpcbind(3NSL)

     rpcb_getmaps(3NSL)
           See rpcbind(3NSL)

     rpcb_gettime(3NSL)
           See rpcbind(3NSL)

     rpcb_rmtcall(3NSL)
           See rpcbind(3NSL)

     rpcb_set(3NSL)
           See rpcbind(3NSL)

     rpcb_unset(3NSL)
           See rpcbind(3NSL)

     rpcbind(3NSL)
           library routines for RPC bind service

     rpcsec_gss(3NSL)
           security flavor incorporating GSS-API protections

     rresvport(3SOCKET)
           See rcmd(3SOCKET)

     rresvport_af(3SOCKET)
           See rcmd(3SOCKET)

     rsm_create_localmemory_handle(3RSM)
           create or free local memory handle

     rsm_free_interconnect_topology(3RSM)
           See rsm_get_interconnect_topology(3RSM)

     rsm_free_localmemory_handle(3RSM)
           See rsm_create_localmemory_handle(3RSM)

     rsm_get_controller(3RSM)
           get or release a controller handle

     rsm_get_controller_attr(3RSM)
           See rsm_get_controller(3RSM)

     rsm_get_interconnect_topology(3RSM)
           get or free interconnect topology

     rsm_get_segmentid_range(3RSM)
           get segment ID range

     rsm_intr_signal_post(3RSM)
           signal or wait for an event

     rsm_intr_signal_wait(3RSM)
           See rsm_intr_signal_post(3RSM)

     rsm_memseg_export_create(3RSM)
           resource  allocation  and  management  functions   for
           export memory segments

     rsm_memseg_export_destroy(3RSM)
           See rsm_memseg_export_create(3RSM)

     rsm_memseg_export_publish(3RSM)
           allow or disallow a memory segment to be  imported  by
           other nodes

     rsm_memseg_export_rebind(3RSM)
           See rsm_memseg_export_create(3RSM)

     rsm_memseg_export_republish(3RSM)
           See rsm_memseg_export_publish(3RSM)

     rsm_memseg_export_unpublish(3RSM)
           See rsm_memseg_export_publish(3RSM)

     rsm_memseg_get_pollfd(3RSM)
           get or release a poll descriptor

     rsm_memseg_import_close_barrier(3RSM)
           See rsm_memseg_import_open_barrier(3RSM)

     rsm_memseg_import_connect(3RSM)
           create or break logical commection between import  and
           export segments

     rsm_memseg_import_destroy_barrier(3RSM)
           See rsm_memseg_import_init_barrier(3RSM)

     rsm_memseg_import_disconnect(3RSM)
           See rsm_memseg_import_connect(3RSM)

     rsm_memseg_import_get(3RSM)
           read from a segment

     rsm_memseg_import_get16(3RSM)
           See rsm_memseg_import_get(3RSM)

     rsm_memseg_import_get32(3RSM)
           See rsm_memseg_import_get(3RSM)

     rsm_memseg_import_get64(3RSM)
           See rsm_memseg_import_get(3RSM)

     rsm_memseg_import_get8(3RSM)
           See rsm_memseg_import_get(3RSM)

     rsm_memseg_import_get_mode(3RSM)
           See rsm_memseg_import_set_mode(3RSM)

     rsm_memseg_import_getv(3RSM)
           See rsm_memseg_import_putv(3RSM)

     rsm_memseg_import_init_barrier(3RSM)
           create or destroy barrier for imported segment

     rsm_memseg_import_map(3RSM)
           map or unmap imported segment

     rsm_memseg_import_open_barrier(3RSM)
           remote memory access error detection functions

     rsm_memseg_import_order_barrier(3RSM)
           See rsm_memseg_import_open_barrier(3RSM)

     rsm_memseg_import_put(3RSM)
           write to a segment

     rsm_memseg_import_put16(3RSM)
           See rsm_memseg_import_put(3RSM)

     rsm_memseg_import_put32(3RSM)
           See rsm_memseg_import_put(3RSM)

     rsm_memseg_import_put64(3RSM)
           See rsm_memseg_import_put(3RSM)

     rsm_memseg_import_put8(3RSM)
           See rsm_memseg_import_put(3RSM)

     rsm_memseg_import_putv(3RSM)
           write to a segment using a list of I/O requests

     rsm_memseg_import_set_mode(3RSM)
           set or get mode for barrier scoping

     rsm_memseg_import_unmap(3RSM)
           See rsm_memseg_import_map(3RSM)

     rsm_memseg_release_pollfd(3RSM)
           See rsm_memseg_get_pollfd(3RSM)

     rsm_release_controller(3RSM)
           See rsm_get_controller(3RSM)

     rstat(3RPC)
           get performance data from remote kernel

     rtld_audit(3EXT)
           runtime linker auditing functions

     rtld_db(3EXT)
           runtime linker debugging functions

     ruserok(3SOCKET)
           See rcmd(3SOCKET)

     rusers(3RPC)
           return information about users on remote machines

     rw_rdlock(3THR)
           See rwlock(3THR)

     rw_tryrdlock(3THR)
           See rwlock(3THR)

     rw_trywrlock(3THR)
           See rwlock(3THR)

     rw_unlock(3THR)
           See rwlock(3THR)

     rw_wrlock(3THR)
           See rwlock(3THR)

     rwall(3RPC)
           write to specified remote machines

     rwlock(3THR)
           multiple readers, single writer locks

     rwlock_destroy(3THR)
           See rwlock(3THR)

     rwlock_init(3THR)
           See rwlock(3THR)

     savetty(3CURSES)
           See curs_kernel(3CURSES)

     savetty(3XCURSES)
           See resetty(3XCURSES)

     scalb(3M)
           load exponent of  a  radix-independent  floating-point
           number

     scalbn(3M)
           load exponent of  a  radix-independent  floating-point
           number

     scale_form(3CURSES)
           See form_win(3CURSES)

     scale_menu(3CURSES)
           See menu_win(3CURSES)

     scandir(3UCB)
           scan a directory

     scanf(3C)
           convert formatted input

     scanw(3CURSES)
           See curs_scanw(3CURSES)

     scanw(3XCURSES)
           See mvscanw(3XCURSES)

     sched(3HEAD)
           execution scheduling

     sched_get_priority_max(3RT)
           get scheduling parameter limits

     sched_get_priority_min(3RT)
           See sched_get_priority_max(3RT)

     sched_getparam(3RT)
           get scheduling parameters

     sched_getscheduler(3RT)
           get scheduling policy

     sched_rr_get_interval(3RT)
           get execution time limits

     sched_setparam(3RT)
           set scheduling parameters

     sched_setscheduler(3RT)
           set scheduling policy and scheduling parameters

     sched_yield(3RT)
           yield processor

     schedctl_exit(3SCHED)
           See schedctl_init(3SCHED)

     schedctl_init(3SCHED)
           preemption control

     schedctl_lookup(3SCHED)
           See schedctl_init(3SCHED)

     schedctl_start(3SCHED)
           See schedctl_init(3SCHED)

     schedctl_stop(3SCHED)
           See schedctl_init(3SCHED)

     scr_dump(3CURSES)
           See curs_scr_dump(3CURSES)

     scr_dump(3XCURSES)
           write screen contents to/from a file

     scr_init(3CURSES)
           See curs_scr_dump(3CURSES)

     scr_init(3XCURSES)
           See scr_dump(3XCURSES)

     scr_restore(3CURSES)
           See curs_scr_dump(3CURSES)

     scr_restore(3XCURSES)
           See scr_dump(3XCURSES)

     scr_set(3CURSES)
           See curs_scr_dump(3CURSES)

     scr_set(3XCURSES)
           See scr_dump(3XCURSES)

     scrl(3CURSES)
           See curs_scroll(3CURSES)

     scrl(3XCURSES)
           scroll a window

     scroll(3CURSES)
           See curs_scroll(3CURSES)

     scroll(3XCURSES)
           See scrl(3XCURSES)

     scrollok(3CURSES)
           See curs_outopts(3CURSES)

     scrollok(3XCURSES)
           See clearok(3XCURSES)

     seconvert(3C)
           See econvert(3C)

     secure_rpc(3NSL)
           library routines for secure remote procedure calls

     seed48(3C)
           See drand48(3C)

     seekdir(3C)
           set position of directory stream

     select(3C)
           synchronous I/O multiplexing

     sem_close(3RT)
           close a named semaphore

     sem_destroy(3RT)
           destroy an unnamed semaphore

     sem_getvalue(3RT)
           get the value of a semaphore

     sem_init(3RT)
           initialize an unnamed semaphore

     sem_open(3RT)
           initialize/open a named semaphore

     sem_post(3RT)
           increment the count of a semaphore

     sem_trywait(3RT)
           See sem_wait(3RT)

     sem_unlink(3RT)
           remove a named semaphore

     sem_wait(3RT)
           acquire or wait for a semaphore

     sema_destroy(3THR)
           See semaphore(3THR)

     sema_init(3THR)
           See semaphore(3THR)

     sema_post(3THR)
           See semaphore(3THR)

     sema_trywait(3THR)
           See semaphore(3THR)

     sema_wait(3THR)
           See semaphore(3THR)

     semaphore(3THR)
           semaphores

     send(3SOCKET)
           send a message from a socket

     send(3XNET)
           send a message on a socket

     sendfile(3EXT)
           send files over sockets or copy files to files

     sendfilev(3EXT)
           send a file

     sendmsg(3SOCKET)
           See send(3SOCKET)

     sendmsg(3XNET)
           send a message on a socket using a message structure

     sendto(3SOCKET)
           See send(3SOCKET)

     sendto(3XNET)
           send a message on a socket

     set_current_field(3CURSES)
           See form_page(3CURSES)

     set_current_item(3CURSES)
           See menu_item_current(3CURSES)

     set_curterm(3CURSES)
           See curs_terminfo(3CURSES)

     set_curterm(3XCURSES)
           See del_curterm(3XCURSES)

     set_field_back(3CURSES)
           See form_field_attributes(3CURSES)

     set_field_buffer(3CURSES)
           See form_field_buffer(3CURSES)

     set_field_fore(3CURSES)
           See form_field_attributes(3CURSES)

     set_field_init(3CURSES)
           See form_hook(3CURSES)

     set_field_just(3CURSES)
           See form_field_just(3CURSES)

     set_field_opts(3CURSES)
           See form_field_opts(3CURSES)

     set_field_pad(3CURSES)
           See form_field_attributes(3CURSES)

     set_field_status(3CURSES)
           See form_field_buffer(3CURSES)

     set_field_term(3CURSES)
           See form_hook(3CURSES)

     set_field_type(3CURSES)
           See form_field_validation(3CURSES)

     set_field_userptr(3CURSES)
           See form_field_userptr(3CURSES)

     set_fieldtype_arg(3CURSES)
           See form_fieldtype(3CURSES)

     set_fieldtype_choice(3CURSES)
           See form_fieldtype(3CURSES)

     set_form_fields(3CURSES)
           See form_field(3CURSES)

     set_form_init(3CURSES)
           See form_hook(3CURSES)

     set_form_opts(3CURSES)
           See form_opts(3CURSES)

     set_form_page(3CURSES)
           See form_page(3CURSES)

     set_form_sub(3CURSES)
           See form_win(3CURSES)

     set_form_term(3CURSES)
           See form_hook(3CURSES)

     set_form_userptr(3CURSES)
           See form_userptr(3CURSES)

     set_form_win(3CURSES)
           See form_win(3CURSES)

     set_item_init(3CURSES)
           See menu_hook(3CURSES)

     set_item_opts(3CURSES)
           See menu_item_opts(3CURSES)

     set_item_term(3CURSES)
           See menu_hook(3CURSES)

     set_item_userptr(3CURSES)
           See menu_item_userptr(3CURSES)

     set_item_value(3CURSES)
           See menu_item_value(3CURSES)

     set_max_field(3CURSES)
           See form_field_buffer(3CURSES)

     set_menu_back(3CURSES)
           See menu_attributes(3CURSES)

     set_menu_fore(3CURSES)
           See menu_attributes(3CURSES)

     set_menu_format(3CURSES)
           See menu_format(3CURSES)

     set_menu_grey(3CURSES)
           See menu_attributes(3CURSES)

     set_menu_init(3CURSES)
           See menu_hook(3CURSES)

     set_menu_items(3CURSES)
           See menu_items(3CURSES)

     set_menu_mark(3CURSES)
           See menu_mark(3CURSES)

     set_menu_opts(3CURSES)
           See menu_opts(3CURSES)

     set_menu_pad(3CURSES)
           See menu_attributes(3CURSES)

     set_menu_pattern(3CURSES)
           See menu_pattern(3CURSES)

     set_menu_sub(3CURSES)
           See menu_win(3CURSES)

     set_menu_term(3CURSES)
           See menu_hook(3CURSES)

     set_menu_userptr(3CURSES)
           See menu_userptr(3CURSES)

     set_menu_win(3CURSES)
           See menu_win(3CURSES)

     set_new_page(3CURSES)
           See form_new_page(3CURSES)

     set_panel_userptr(3CURSES)
           See panel_userptr(3CURSES)

     set_term(3CURSES)
           See curs_initscr(3CURSES)

     set_term(3XCURSES)
           switch between terminals

     set_top_row(3CURSES)
           See menu_item_current(3CURSES)

     setac(3BSM)
           See getacinfo(3BSM)

     setauclass(3BSM)
           See getauclassent(3BSM)

     setauevent(3BSM)
           See getauevent(3BSM)

     setauthattr(3SECDB)
           See getauthattr(3SECDB)

     setauuser(3BSM)
           See getauusernam(3BSM)

     setbuf(3C)
           assign buffering to a stream

     setbuffer(3C)
           assign buffering to a stream

     setcat(3C)
           define default catalog

     setcchar(3XCURSES)
           set a cchar_t type character from a wide character and
           rendition

     setddent(3BSM)
           See getddent(3BSM)

     setddfile(3BSM)
           See getddent(3BSM)

     setdmapent(3BSM)
           See getdmapent(3BSM)

     setdmapfile(3BSM)
           See getdmapent(3BSM)

     setexecattr(3SECDB)
           See getexecattr(3SECDB)

     setgrent(3C)
           See getgrnam(3C)

     sethostent(3NSL)
           See gethostbyname(3NSL)

     sethostent(3XNET)
           See endhostent(3XNET)

     sethostname(3C)
           See gethostname(3C)

     setjmp(3C)
           non-local goto

     setjmp(3UCB)
           non-local goto

     setkey(3C)
           set encoding key

     setlabel(3C)
           define the label for

     setlinebuf(3C)
           See setbuffer(3C)

     setlocale(3C)
           modify and query a program's locale

     setlogmask(3C)
           See syslog(3C)

     setnetconfig(3NSL)
           See getnetconfig(3NSL)

     setnetent(3SOCKET)
           See getnetbyname(3SOCKET)

     setnetent(3XNET)
           See endnetent(3XNET)

     setnetgrent(3C)
           See getnetgrent(3C)

     setnetpath(3NSL)
           See getnetpath(3NSL)

     setpriority(3C)
           See getpriority(3C)

     setprofattr(3SECDB)
           See getprofattr(3SECDB)

     setproject(3PROJECT)
           place process in new project with  attendant  resource
           controls, resource pools, and attributes

     setprojent(3PROJECT)
           See getprojent(3PROJECT)

     setprotoent(3SOCKET)
           See getprotobyname(3SOCKET)

     setprotoent(3XNET)
           See endprotoent(3XNET)

     setpwent(3C)
           See getpwnam(3C)

     setrpcent(3NSL)
           See getrpcbyname(3NSL)

     setscrreg(3CURSES)
           See curs_outopts(3CURSES)

     setscrreg(3XCURSES)
           See clearok(3XCURSES)

     setservent(3SOCKET)
           See getservbyname(3SOCKET)

     setservent(3XNET)
           See endservent(3XNET)

     setsockopt(3SOCKET)
           See getsockopt(3SOCKET)

     setsockopt(3XNET)
           set the socket options

     setspent(3C)
           See getspnam(3C)

     setstate(3C)
           See random(3C)

     setsyx(3CURSES)
           See curs_kernel(3CURSES)

     setterm(3CURSES)
           See curs_terminfo(3CURSES)

     settimeofday(3C)
           See gettimeofday(3C)

     settimeofday(3UCB)
           See gettimeofday(3UCB)

     setupterm(3CURSES)
           See curs_terminfo(3CURSES)

     setupterm(3XCURSES)
           See del_curterm(3XCURSES)

     setuserattr(3SECDB)
           See getuserattr(3SECDB)

     setusershell(3C)
           See getusershell(3C)

     setutent(3C)
           See getutent(3C)

     setutxent(3C)
           See getutxent(3C)

     setvbuf(3C)
           See setbuf(3C)

     sfconvert(3C)
           See econvert(3C)

     sgconvert(3C)
           See econvert(3C)

     shm_open(3RT)
           open a shared memory object

     shm_unlink(3RT)
           remove a shared memory object

     show_panel(3CURSES)
           See panel_show(3CURSES)

     shutdown(3SOCKET)
           shut down part of a full-duplex connection

     shutdown(3XNET)
           shut down socket send and receive operations

     sig2str(3C)
           See str2sig(3C)

     sigaddset(3C)
           See sigsetops(3C)

     sigblock(3UCB)
           block signals

     sigdelset(3C)
           See sigsetops(3C)

     sigemptyset(3C)
           See sigsetops(3C)

     sigfillset(3C)
           See sigsetops(3C)

     sigfpe(3C)
           signal handling for specific SIGFPE codes

     sighold(3C)
           See signal(3C)

     sigignore(3C)
           See signal(3C)

     siginfo(3HEAD)
           signal generation information

     siginterrupt(3UCB)
           allow signals to interrupt functions

     sigismember(3C)
           See sigsetops(3C)

     siglongjmp(3C)
           See setjmp(3C)

     sigmask(3UCB)
           See sigblock(3UCB)

     signal(3C)
           simplified signal management for application processes

     signal(3HEAD)
           base signals

     signal(3UCB)
           simplified software signal facilities

     significand(3M)
           significand function

     sigpause(3C)
           See signal(3C)

     sigpause(3UCB)
           See sigblock(3UCB)

     sigqueue(3RT)
           queue a signal to a process

     sigrelse(3C)
           See signal(3C)

     sigset(3C)
           See signal(3C)

     sigsetjmp(3C)
           See setjmp(3C)

     sigsetmask(3UCB)
           See sigblock(3UCB)

     sigsetops(3C)
           manipulate sets of signals

     sigstack(3C)
           set and/or get alternate signal stack context

     sigstack(3UCB)
           set and/or get signal stack context

     sigtimedwait(3RT)
           See sigwaitinfo(3RT)

     sigvec(3UCB)
           software signal facilities

     sigwaitinfo(3RT)
           wait for queued signals

     sin(3M)
           sine function

     single_to_decimal(3C)
           See floating_to_decimal(3C)

     sinh(3M)
           hyperbolic sine function

     sleep(3C)
           suspend execution for an interval of time

     sleep(3UCB)
           suspend execution for interval

     slk_attr_off(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_attr_on(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_attr_set(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_attroff(3CURSES)
           See curs_slk(3CURSES)

     slk_attroff(3XCURSES)
           soft label functions

     slk_attron(3CURSES)
           See curs_slk(3CURSES)

     slk_attron(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_attrset(3CURSES)
           See curs_slk(3CURSES)

     slk_attrset(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_clear(3CURSES)
           See curs_slk(3CURSES)

     slk_clear(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_color(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_init(3CURSES)
           See curs_slk(3CURSES)

     slk_init(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_label(3CURSES)
           See curs_slk(3CURSES)

     slk_label(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_noutrefresh(3CURSES)
           See curs_slk(3CURSES)

     slk_noutrefresh(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_refresh(3CURSES)
           See curs_slk(3CURSES)

     slk_refresh(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_restore(3CURSES)
           See curs_slk(3CURSES)

     slk_restore(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_set(3CURSES)
           See curs_slk(3CURSES)

     slk_set(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_touch(3CURSES)
           See curs_slk(3CURSES)

     slk_touch(3XCURSES)
           See slk_attroff(3XCURSES)

     slk_wset(3XCURSES)
           See slk_attroff(3XCURSES)

     slp_api(3SLP)
           Service  Location  Protocol  Application   Programming
           Interface

     slp_strerror(3SLP)
           map SLP error codes to messages

     snprintf(3C)
           See printf(3C)

     socket(3HEAD)
           Internet Protocol family

     socket(3SOCKET)
           create an endpoint for communication

     socket(3XNET)
           create an endpoint for communication

     socketpair(3SOCKET)
           create a pair of connected sockets

     socketpair(3XNET)
           create a pair of connected sockets

     space(3PLOT)
           See plot(3PLOT)

     spray(3SOCKET)
           scatter data in order to test the network

     sprintf(3C)
           See printf(3C)

     sprintf(3UCB)
           See printf(3UCB)

     sqrt(3M)
           square root function

     srand(3C)
           See rand(3C)

     srand(3UCB)
           See rand(3UCB)

     srand48(3C)
           See drand48(3C)

     srandom(3C)
           See random(3C)

     sscanf(3C)
           See scanf(3C)

     ssignal(3C)
           software signals

     stack_getbounds(3C)
           retrieve stack boundaries

     stack_inbounds(3C)
           determine if address is within stack boundaries

     stack_setbounds(3C)
           update stack boundaries

     stack_violation(3C)
           determine stack boundary violation event

     standend(3CURSES)
           See curs_attr(3CURSES)

     standend(3XCURSES)
           set/clear window attributes

     standout(3CURSES)
           See curs_attr(3CURSES)

     standout(3XCURSES)
           See standend(3XCURSES)

     start_color(3CURSES)
           See curs_color(3CURSES)

     start_color(3XCURSES)
           See can_change_color(3XCURSES)

     stat(3HEAD)
           data returned by stat system call

     stdarg(3HEAD)
           handle variable argument list

     stdio(3C)
           standard buffered input/output package

     stdscr(3XCURSES)
           default window

     step(3GEN)
           See regexpr(3GEN)

     store(3UCB)
           See dbm(3UCB)

     str(3GEN)
           See strfind(3GEN)

     str2sig(3C)
           translation between signal name and signal number

     strcadd(3GEN)
           See strccpy(3GEN)

     strcasecmp(3C)
           See string(3C)

     strcat(3C)
           See string(3C)

     strccpy(3GEN)
           copy strings, compressing or expanding escape codes

     strchr(3C)
           See string(3C)

     strcmp(3C)
           See string(3C)

     strcoll(3C)
           string collation

     strcpy(3C)
           See string(3C)

     strcspn(3C)
           See string(3C)

     strdup(3C)
           See string(3C)

     streadd(3GEN)
           See strccpy(3GEN)

     strecpy(3GEN)
           See strccpy(3GEN)

     strerror(3C)
           get error message string

     strfind(3GEN)
           string manipulations

     strfmon(3C)
           convert monetary value to string

     strftime(3C)
           convert date and time to string

     string(3C)
           string operations

     string_to_decimal(3C)
           parse characters into decimal record

     strlcat(3C)
           See string(3C)

     strlcpy(3C)
           See string(3C)

     strlen(3C)
           See string(3C)

     strncasecmp(3C)
           See string(3C)

     strncat(3C)
           See string(3C)

     strncmp(3C)
           See string(3C)

     strncpy(3C)
           See string(3C)

     strpbrk(3C)
           See string(3C)

     strptime(3C)
           date and time conversion

     strrchr(3C)
           See string(3C)

     strrspn(3GEN)
           See strfind(3GEN)

     strsignal(3C)
           get name of signal

     strspn(3C)
           See string(3C)

     strstr(3C)
           See string(3C)

     strtod(3C)
           convert string to double-precision number

     strtok(3C)
           See string(3C)

     strtok_r(3C)
           See string(3C)

     strtol(3C)
           string conversion routines

     strtoll(3C)
           See strtol(3C)

     strtoul(3C)
           convert string to unsigned long

     strtoull(3C)
           See strtoul(3C)

     strtows(3C)
           code conversion for Process Code and File Code

     strtrns(3GEN)
           See strfind(3GEN)

     strxfrm(3C)
           string transformation

     subpad(3CURSES)
           See curs_pad(3CURSES)

     subpad(3XCURSES)
           See newpad(3XCURSES)

     subwin(3CURSES)
           See curs_window(3CURSES)

     subwin(3XCURSES)
           See derwin(3XCURSES)

     svc_add_input(3NSL)
           See rpc_svc_input(3NSL)

     svc_auth_reg(3NSL)
           See rpc_svc_reg(3NSL)

     svc_control(3NSL)
           See rpc_svc_create(3NSL)

     svc_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_destroy(3NSL)
           See rpc_svc_create(3NSL)

     svc_dg_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_dg_enablecache(3NSL)
           See rpc_svc_calls(3NSL)

     svc_done(3NSL)
           See rpc_svc_calls(3NSL)

     svc_door_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_exit(3NSL)
           See rpc_svc_calls(3NSL)

     svc_fd_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_fds(3NSL)
           See rpc_soc(3NSL)

     svc_fdset(3NSL)
           See rpc_svc_calls(3NSL)

     svc_freeargs(3NSL)
           See rpc_svc_calls(3NSL)

     svc_getargs(3NSL)
           See rpc_svc_calls(3NSL)

     svc_getcaller(3NSL)
           See rpc_soc(3NSL)

     svc_getreq(3NSL)
           See rpc_soc(3NSL)

     svc_getreq_common(3NSL)
           See rpc_svc_calls(3NSL)

     svc_getreq_poll(3NSL)
           See rpc_svc_calls(3NSL)

     svc_getreqset(3NSL)
           See rpc_svc_calls(3NSL)

     svc_getrpccaller(3NSL)
           See rpc_svc_calls(3NSL)

     svc_max_pollfd(3NSL)
           See rpc_svc_calls(3NSL)

     svc_pollfd(3NSL)
           See rpc_svc_calls(3NSL)

     svc_raw_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_reg(3NSL)
           See rpc_svc_reg(3NSL)

     svc_register(3NSL)
           See rpc_soc(3NSL)

     svc_remove_input(3NSL)
           See rpc_svc_input(3NSL)

     svc_run(3NSL)
           See rpc_svc_calls(3NSL)

     svc_sendreply(3NSL)
           See rpc_svc_calls(3NSL)

     svc_tli_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_tp_create(3NSL)
           See rpc_svc_create(3NSL)

     svc_unreg(3NSL)
           See rpc_svc_reg(3NSL)

     svc_unregister(3NSL)
           See rpc_soc(3NSL)

     svc_vc_create(3NSL)
           See rpc_svc_create(3NSL)

     svcerr_auth(3NSL)
           See rpc_svc_err(3NSL)

     svcerr_decode(3NSL)
           See rpc_svc_err(3NSL)

     svcerr_noproc(3NSL)
           See rpc_svc_err(3NSL)

     svcerr_noprog(3NSL)
           See rpc_svc_err(3NSL)

     svcerr_progvers(3NSL)
           See rpc_svc_err(3NSL)

     svcerr_systemerr(3NSL)
           See rpc_svc_err(3NSL)

     svcerr_weakauth(3NSL)
           See rpc_svc_err(3NSL)

     svcfd_create(3NSL)
           See rpc_soc(3NSL)

     svcraw_create(3NSL)
           See rpc_soc(3NSL)

     svctcp_create(3NSL)
           See rpc_soc(3NSL)

     svcudp_bufcreate(3NSL)
           See rpc_soc(3NSL)

     svcudp_create(3NSL)
           See rpc_soc(3NSL)

     swab(3C)
           swap bytes

     swapcontext(3C)
           See makecontext(3C)

     swprintf(3C)
           See fwprintf(3C)

     swscanf(3C)
           See fwscanf(3C)

     sync_instruction_memory(3C)
           make modified instructions executable

     syncok(3CURSES)
           See curs_window(3CURSES)

     syncok(3XCURSES)
           synchronize window with its parents or children

     sys_siglist(3UCB)
           See psignal(3UCB)

     syscall(3UCB)
           indirect system call

     sysconf(3C)
           get configurable system variables

     sysevent_bind_handle(3SYSEVENT)
           bind or unbind subscriber handle

     sysevent_free(3SYSEVENT)
           free memory for sysevent handle

     sysevent_get_attr_list(3SYSEVENT)
           get attribute list pointer

     sysevent_get_class_name(3SYSEVENT)
           get class name, subclass name, ID or  buffer  size  of
           event

     sysevent_get_event_id(3SYSEVENT)
           See sysevent_get_class_name(3SYSEVENT)

     sysevent_get_pid(3SYSEVENT)
           See sysevent_get_vendor_name(3SYSEVENT)

     sysevent_get_pub_name(3SYSEVENT)
           See sysevent_get_vendor_name(3SYSEVENT)

     sysevent_get_size(3SYSEVENT)
           See sysevent_get_class_name(3SYSEVENT)

     sysevent_get_subclass_name(3SYSEVENT)
           See sysevent_get_class_name(3SYSEVENT)

     sysevent_get_vendor_name(3SYSEVENT)
           get vendor name, publisher name  or  processor  ID  of
           event

     sysevent_post_event(3SYSEVENT)
           post system event for applications

     sysevent_subscribe_event(3SYSEVENT)
           register or unregister interest in event receipt

     sysevent_unbind_handle(3SYSEVENT)
           See sysevent_bind_handle(3SYSEVENT)

     sysevent_unsubscribe_event(3SYSEVENT)
           See sysevent_subscribe_event(3SYSEVENT)

     syslog(3C)
           control system log

     system(3C)
           issue a shell command

     t_accept(3NSL)
           accept a connection request

     t_alloc(3NSL)
           allocate a library structure

     t_bind(3NSL)
           bind an address to a transport endpoint

     t_close(3NSL)
           close a transport endpoint

     t_connect(3NSL)
           establish a connection with another transport user

     t_errno(3NSL)
           XTI error return value

     t_error(3NSL)
           produce error message

     t_free(3NSL)
           free a library structure

     t_getinfo(3NSL)
           get protocol-specific service information

     t_getprotaddr(3NSL)
           get the protocol addresses

     t_getstate(3NSL)
           get the current state

     t_listen(3NSL)
           listen for a connection indication

     t_look(3NSL)
           look at the current event on a transport endpoint

     t_open(3NSL)
           establish a transport endpoint

     t_optmgmt(3NSL)
           manage options for a transport endpoint

     t_rcv(3NSL)
           receive data or expedited data sent over a connection

     t_rcvconnect(3NSL)
           receive the confirmation from a connection request

     t_rcvdis(3NSL)
           retrieve information from disconnection

     t_rcvrel(3NSL)
           acknowledge receipt of an orderly release indication

     t_rcvreldata(3NSL)
           receive an orderly release indication or  confirmation
           containing user data

     t_rcvudata(3NSL)
           receive a data unit

     t_rcvuderr(3NSL)
           receive a unit data error indication

     t_rcvv(3NSL)
           receive data or expedited data sent over a  connection
           and  put  the  data  into  one  or more non-contiguous
           buffers

     t_rcvvudata(3NSL)
           receive a data unit into  one  or  more  noncontiguous
           buffers

     t_snd(3NSL)
           send data or expedited data over a connection

     t_snddis(3NSL)
           send user-initiated disconnection request

     t_sndrel(3NSL)
           initiate an orderly release

     t_sndreldata(3NSL)
           initiate or respond to an orderly  release  with  user
           data

     t_sndudata(3NSL)
           send a data unit

     t_sndv(3NSL)
           send data or expedited data, from  one  or  more  non-
           contiguous buffers, on a connection

     t_sndvudata(3NSL)
           send a  data  unit  from  one  or  more  noncontiguous
           buffers

     t_strerror(3NSL)
           produce an error message string

     t_sync(3NSL)
           synchronize transport library

     t_sysconf(3NSL)
           get configurable XTI variables

     t_unbind(3NSL)
           disable a transport endpoint

     taddr2uaddr(3NSL)
           See netdir(3NSL)

     tan(3M)
           tangent function

     tanh(3M)
           hyperbolic tangent function

     tcdrain(3C)
           wait for transmission of output

     tcflow(3C)
           suspend or restart the transmission  or  reception  of
           data

     tcflush(3C)
           flush non-transmitted output data, non-read input data
           or both

     tcgetattr(3C)
           get the parameters associated with the terminal

     tcgetpgrp(3C)
           get foreground process group ID

     tcgetsid(3C)
           get process group ID for session leader  for  control-
           ling terminal

     tcsendbreak(3C)
           send a ``break'' for a specific duration

     tcsetattr(3C)
           set the parameters associated with the terminal

     tcsetpgrp(3C)
           set foreground process group ID

     td_event_addset(3THR)
           See td_ta_event_addr(3THR)

     td_event_delset(3THR)
           See td_ta_event_addr(3THR)

     td_event_emptyset(3THR)
           See td_ta_event_addr(3THR)

     td_event_fillset(3THR)
           See td_ta_event_addr(3THR)

     td_eventisempty(3THR)
           See td_ta_event_addr(3THR)

     td_eventismember(3THR)
           See td_ta_event_addr(3THR)

     td_init(3THR)
           performs initialization for  libthread_db  library  of
           interfaces

     td_log(3THR)
           placeholder for future logging functionality

     td_sync_get_info(3THR)
           operations on a synchronization object in libthread_db

     td_sync_get_stats(3THR)
           See td_sync_get_info(3THR)

     td_sync_setstate(3THR)
           See td_sync_get_info(3THR)

     td_sync_waiters(3THR)
           See td_sync_get_info(3THR)

     td_ta_clear_event(3THR)
           See td_ta_event_addr(3THR)

     td_ta_delete(3THR)
           See td_ta_new(3THR)

     td_ta_enable_stats(3THR)
           collect target process statistics for libthread_db

     td_ta_event_addr(3THR)
           thread events in libthread_db

     td_ta_event_getmsg(3THR)
           See td_ta_event_addr(3THR)

     td_ta_get_nthreads(3THR)
           gets the total number of  threads  in  a  process  for
           libthread_db

     td_ta_get_ph(3THR)
           See td_ta_new(3THR)

     td_ta_get_stats(3THR)
           See td_ta_enable_stats(3THR)

     td_ta_map_addr2sync(3THR)
           get a synchronization object handle from a  synchroni-
           zation object's address

     td_ta_map_id2thr(3THR)
           convert a thread id or LWP id to a thread handle

     td_ta_map_lwp2thr(3THR)
           See td_ta_map_id2thr(3THR)

     td_ta_new(3THR)
           allocate   and   deallocate   process   handles    for
           libthread_db

     td_ta_reset_stats(3THR)
           See td_ta_enable_stats(3THR)

     td_ta_set_event(3THR)
           See td_ta_event_addr(3THR)

     td_ta_setconcurrency(3THR)
           set concurrency level for target process

     td_ta_sync_iter(3THR)
           iterator   functions   on   process    handles    from
           libthread_db

     td_ta_sync_tracking_enable(3THR)
           See td_sync_get_info(3THR)

     td_ta_thr_iter(3THR)
           See td_ta_sync_iter(3THR)

     td_ta_tsd_iter(3THR)
           See td_ta_sync_iter(3THR)

     td_thr_clear_event(3THR)
           See td_ta_event_addr(3THR)

     td_thr_dbresume(3THR)
           See td_thr_dbsuspend(3THR)

     td_thr_dbsuspend(3THR)
           suspend and resume threads in libthread_db

     td_thr_event_enable(3THR)
           See td_ta_event_addr(3THR)

     td_thr_event_getmsg(3THR)
           See td_ta_event_addr(3THR)

     td_thr_get_info(3THR)
           get thread  information  in  libthread_db  library  of
           interfaces

     td_thr_getfpregs(3THR)
           See td_thr_getgregs(3THR)

     td_thr_getgregs(3THR)
           reading and writing thread registers in libthread_db

     td_thr_getxregs(3THR)
           See td_thr_getgregs(3THR)

     td_thr_getxregsize(3THR)
           See td_thr_getgregs(3THR)

     td_thr_lockowner(3THR)
           iterate over the set of locks owned by a thread

     td_thr_set_event(3THR)
           See td_ta_event_addr(3THR)

     td_thr_setfpregs(3THR)
           See td_thr_getgregs(3THR)

     td_thr_setgregs(3THR)
           See td_thr_getgregs(3THR)

     td_thr_setprio(3THR)
           set the priority of a thread

     td_thr_setsigpending(3THR)
           manage thread signals for libthread_db

     td_thr_setxregs(3THR)
           See td_thr_getgregs(3THR)

     td_thr_sigsetmask(3THR)
           See td_thr_setsigpending(3THR)

     td_thr_sleepinfo(3THR)
           return the synchronization handle for  the  object  on
           which a thread is blocked

     td_thr_tsd(3THR)
           get a thread's thread-specific data  for  libthread_db
           library of interfaces

     td_thr_validate(3THR)
           test a thread handle for validity

     tdelete(3C)
           See tsearch(3C)

     tell(3C)
           return a file offset for a file descriptor

     telldir(3C)
           current location of a named directory stream

     tempnam(3C)
           See tmpnam(3C)

     term_attrs(3XCURSES)
           See termattrs(3XCURSES)

     termattrs(3CURSES)
           See curs_termattrs(3CURSES)

     termattrs(3XCURSES)
           get supported terminal video attributes

     termios(3C)
           general terminal interface

     termname(3CURSES)
           See curs_termattrs(3CURSES)

     termname(3XCURSES)
           return the value of the environmental variable TERM

     textdomain(3C)
           See gettext(3C)

     tfind(3C)
           See tsearch(3C)

     tgetent(3CURSES)
           See curs_termcap(3CURSES)

     tgetent(3XCURSES)
           emulate the termcap database

     tgetflag(3CURSES)
           See curs_termcap(3CURSES)

     tgetflag(3XCURSES)
           See tgetent(3XCURSES)

     tgetnum(3CURSES)
           See curs_termcap(3CURSES)

     tgetnum(3XCURSES)
           See tgetent(3XCURSES)

     tgetstr(3CURSES)
           See curs_termcap(3CURSES)

     tgetstr(3XCURSES)
           See tgetent(3XCURSES)

     tgoto(3CURSES)
           See curs_termcap(3CURSES)

     tgoto(3XCURSES)
           See tgetent(3XCURSES)

     thr_continue(3THR)
           See thr_suspend(3THR)

     thr_create(3THR)
           create a thread

     thr_exit(3THR)
           terminate the calling thread

     thr_getconcurrency(3THR)
           get or set thread concurrency level

     thr_getprio(3THR)
           access dynamic thread scheduling

     thr_getspecific(3THR)
           See thr_keycreate(3THR)

     thr_join(3THR)
           wait for thread termination

     thr_keycreate(3THR)
           thread-specific-data functions

     thr_kill(3THR)
           send a signal to a thread

     thr_main(3THR)
           identify the main thread

     thr_min_stack(3THR)
           return the minimum-allowable size for a thread's stack

     thr_self(3THR)
           get calling thread's ID

     thr_setconcurrency(3THR)
           See thr_getconcurrency(3THR)

     thr_setprio(3THR)
           See thr_getprio(3THR)

     thr_setspecific(3THR)
           See thr_keycreate(3THR)

     thr_sigsetmask(3THR)
           change or examine calling thread's signal mask

     thr_stksegment(3THR)
           get thread stack address and size

     thr_suspend(3THR)
           suspend or continue thread execution

     thr_yield(3THR)
           yield to another thread

     threads(3THR)
           concepts related to POSIX pthreads and Solaris threads
           and the libpthread and libthread libraries

     tigetflag(3CURSES)
           See curs_terminfo(3CURSES)

     tigetflag(3XCURSES)
           return the value of a terminfo capability

     tigetnum(3CURSES)
           See curs_terminfo(3CURSES)

     tigetnum(3XCURSES)
           See tigetflag(3XCURSES)

     tigetstr(3CURSES)
           See curs_terminfo(3CURSES)

     tigetstr(3XCURSES)
           See tigetflag(3XCURSES)

     time(3HEAD)
           time types

     timeout(3CURSES)
           See curs_inopts(3CURSES)

     timeout(3XCURSES)
           See notimeout(3XCURSES)

     timer_create(3RT)
           create a timer

     timer_delete(3RT)
           delete a timer

     timer_getoverrun(3RT)
           See timer_settime(3RT)

     timer_gettime(3RT)
           See timer_settime(3RT)

     timer_settime(3RT)
           per-process timers

     times(3UCB)
           get process times

     tmpfile(3C)
           create a temporary file

     tmpnam(3C)
           create a name for a temporary file

     tmpnam_r(3C)
           See tmpnam(3C)

     tnf_process_disable(3TNF)
           probe control internal interface

     tnf_process_enable(3TNF)
           See tnf_process_disable(3TNF)

     tnf_thread_disable(3TNF)
           See tnf_process_disable(3TNF)

     tnf_thread_enable(3TNF)
           See tnf_process_disable(3TNF)

     tnfctl_buffer_alloc(3TNF)
           allocate or deallocate a buffer for trace data

     tnfctl_buffer_dealloc(3TNF)
           See tnfctl_buffer_alloc(3TNF)

     tnfctl_check_libs(3TNF)
           See tnfctl_indirect_open(3TNF)

     tnfctl_close(3TNF)
           close a tnfctl handle

     tnfctl_continue(3TNF)
           See tnfctl_pid_open(3TNF)

     tnfctl_exec_open(3TNF)
           See tnfctl_pid_open(3TNF)

     tnfctl_filter_list_add(3TNF)
           See tnfctl_trace_state_set(3TNF)

     tnfctl_filter_list_delete(3TNF)
           See tnfctl_trace_state_set(3TNF)

     tnfctl_filter_list_get(3TNF)
           See tnfctl_trace_state_set(3TNF)

     tnfctl_filter_state_set(3TNF)
           See tnfctl_trace_state_set(3TNF)

     tnfctl_indirect_open(3TNF)
           control probes of another process  where  caller  pro-
           vides /proc functionality

     tnfctl_internal_open(3TNF)
           create handle for internal process probe control

     tnfctl_kernel_open(3TNF)
           create handle for kernel probe control

     tnfctl_pid_open(3TNF)
           interfaces for direct probe and  process  control  for
           another process

     tnfctl_probe_apply(3TNF)
           iterate over probes

     tnfctl_probe_apply_ids(3TNF)
           See tnfctl_probe_apply(3TNF)

     tnfctl_probe_connect(3TNF)
           See tnfctl_probe_state_get(3TNF)

     tnfctl_probe_disable(3TNF)
           See tnfctl_probe_state_get(3TNF)

     tnfctl_probe_disconnect_all(3TNF)
           See tnfctl_probe_state_get(3TNF)

     tnfctl_probe_enable(3TNF)
           See tnfctl_probe_state_get(3TNF)

     tnfctl_probe_state_get(3TNF)
           interfaces to query and to change the state of a probe

     tnfctl_probe_trace(3TNF)
           See tnfctl_probe_state_get(3TNF)

     tnfctl_probe_untrace(3TNF)
           See tnfctl_probe_state_get(3TNF)

     tnfctl_register_funcs(3TNF)
           register callbacks for probe creation and destruction

     tnfctl_strerror(3TNF)
           map a tnfctl error code to a string

     tnfctl_trace_attrs_get(3TNF)
           get the trace attributes from a tnfctl handle

     tnfctl_trace_state_set(3TNF)
           control kernel tracing and process filtering

     toascii(3C)
           translate integer to a 7-bit ASCII character

     tolower(3C)
           transliterate upper-case characters to lower-case

     top_panel(3CURSES)
           See panel_top(3CURSES)

     top_row(3CURSES)
           See menu_item_current(3CURSES)

     touchline(3CURSES)
           See curs_touch(3CURSES)

     touchline(3XCURSES)
           See is_linetouched(3XCURSES)

     touchlock(3MAIL)
           See maillock(3MAIL)

     touchwin(3CURSES)
           See curs_touch(3CURSES)

     touchwin(3XCURSES)
           See is_linetouched(3XCURSES)

     toupper(3C)
           transliterate lower-case characters to upper-case

     towctrans(3C)
           wide-character mapping

     towlower(3C)
           transliterate  upper-case   wide-character   code   to
           lower-case

     towupper(3C)
           transliterate  lower-case   wide-character   code   to
           upper-case

     tparm(3CURSES)
           See curs_terminfo(3CURSES)

     tparm(3XCURSES)
           See tigetflag(3XCURSES)

     tputs(3CURSES)
           See curs_terminfo(3CURSES)

     tputs(3CURSES)
           See curs_terminfo(3CURSES)

     tputs(3XCURSES)
           See putp(3XCURSES)

     tracing(3TNF)
           overview of tnf tracing system

     truncate(3C)
           set a file to a specified length

     tsearch(3C)
           manage binary search trees

     ttyname(3C)
           find pathname of a terminal

     ttyname_r(3C)
           See ttyname(3C)

     ttyslot(3C)
           find the  slot  of  the  current  user   in  the  user
           accounting database

     twalk(3C)
           See tsearch(3C)

     typeahead(3CURSES)
           See curs_inopts(3CURSES)

     typeahead(3XCURSES)
           check for type-ahead characters

     types(3HEAD)
           primitive system data types

     types32(3HEAD)
           fixed-width data types

     tzset(3C)
           See ctime(3C)

     uaddr2taddr(3NSL)
           See netdir(3NSL)

     ualarm(3C)
           schedule signal after interval in microseconds

     ucontext(3HEAD)
           user context

     ulckpwdf(3C)
           See lckpwdf(3C)

     ulltostr(3C)
           See strtol(3C)

     umem_alloc(3MALLOC)
           fast, scalable memory allocation

     umem_cache_alloc(3MALLOC)
           See umem_cache_create(3MALLOC)

     umem_cache_create(3MALLOC)
           allocation cache manipulation

     umem_cache_destroy(3MALLOC)
           See umem_cache_create(3MALLOC)

     umem_cache_free(3MALLOC)
           See umem_cache_create(3MALLOC)

     umem_debug(3MALLOC)
           debugging features of the umem library

     umem_free(3MALLOC)
           See umem_alloc(3MALLOC)

     umem_nofail_callback(3MALLOC)
           See umem_alloc(3MALLOC)

     umem_zalloc(3MALLOC)
           See umem_alloc(3MALLOC)

     un(3HEAD)
           definitions for UNIX-domain sockets

     unctrl(3CURSES)
           See curs_util(3CURSES)

     unctrl(3XCURSES)
           generate printable representation of a character

     unget_wch(3XCURSES)
           See ungetch(3XCURSES)

     ungetc(3C)
           push byte back into input stream

     ungetch(3CURSES)
           See curs_getch(3CURSES)

     ungetch(3XCURSES)
           push character back onto the input queue

     ungetwc(3C)
           push wide-character code back into input stream

     ungetwch(3CURSES)
           See curs_getwch(3CURSES)

     unistd(3HEAD)
           standard symbolic constants and types

     unlockpt(3C)
           unlock a pseudo-terminal master/slave pair

     unordered(3C)
           See isnan(3C)

     unpost_form(3CURSES)
           See form_post(3CURSES)

     unpost_menu(3CURSES)
           See menu_post(3CURSES)

     untouchwin(3CURSES)
           See curs_touch(3CURSES)

     untouchwin(3XCURSES)
           See is_linetouched(3XCURSES)

     update_panels(3CURSES)
           See panel_update(3CURSES)

     updwtmp(3C)
           See getutxent(3C)

     updwtmpx(3C)
           See getutxent(3C)

     use_env(3CURSES)
           See curs_util(3CURSES)

     use_env(3XCURSES)
           specify source of screen size information

     user2netname(3NSL)
           See secure_rpc(3NSL)

     usleep(3C)
           suspend execution for interval in microseconds

     utmpname(3C)
           See getutent(3C)

     utmpxname(3C)
           See getutxent(3C)

     valloc(3C)
           See malloc(3C)

     valloc(3MALLOC)
           See watchmalloc(3MALLOC)

     values(3HEAD)
           machine-dependent values

     varargs(3HEAD)
           handle variable argument list

     vfprintf(3C)
           See vprintf(3C)

     vfprintf(3UCB)
           See printf(3UCB)

     vfscanf(3C)
           See scanf(3C)

     vfwprintf(3C)
           wide-character formatted output of a  stdarg  argument
           list

     vfwscanf(3C)
           See fwscanf(3C)

     vid_attr(3XCURSES)
           See vidattr(3XCURSES)

     vid_puts(3XCURSES)
           See vidattr(3XCURSES)

     vidattr(3CURSES)
           See curs_terminfo(3CURSES)

     vidattr(3XCURSES)
           output attributes to the terminal

     vidputs(3CURSES)
           See curs_terminfo(3CURSES)

     vidputs(3XCURSES)
           See vidattr(3XCURSES)

     vlfmt(3C)
           display error message in standard format and  pass  to
           logging and monitoring services

     vline(3XCURSES)
           See hline(3XCURSES)

     vline_set(3XCURSES)
           See hline_set(3XCURSES)

     volmgt_acquire(3VOLMGT)
           reserve removable media device

     volmgt_check(3VOLMGT)
           have Volume Management check for media

     volmgt_feature_enabled(3VOLMGT)
           check whether specific Volume Management features  are
           enabled

     volmgt_inuse(3VOLMGT)
           check whether or not Volume Management is  managing  a
           pathname

     volmgt_ownspath(3VOLMGT)
           check Volume Management name space for path

     volmgt_release(3VOLMGT)
           release removable media device reservation

     volmgt_root(3VOLMGT)
           return the Volume Management root directory

     volmgt_running(3VOLMGT)
           return whether or not Volume Management is running

     volmgt_symdev(3VOLMGT)
           See volmgt_symname(3VOLMGT)

     volmgt_symname(3VOLMGT)
           convert between Volume Management symbolic names,  and
           the devices that correspond to them

     vpfmt(3C)
           display error message in standard format and  pass  to
           logging and monitoring services

     vprintf(3C)
           print formatted output of a variable argument list

     vprintf(3UCB)
           See printf(3UCB)

     vscanf(3C)
           See scanf(3C)

     vsnprintf(3C)
           See vprintf(3C)

     vsprintf(3C)
           See vprintf(3C)

     vsprintf(3UCB)
           See printf(3UCB)

     vsscanf(3C)
           See scanf(3C)

     vswprintf(3C)
           See vfwprintf(3C)

     vswscanf(3C)
           See fwscanf(3C)

     vsyslog(3C)
           log message with a stdarg argument list

     vw_printw(3XCURSES)
           print formatted output in window

     vw_scanw(3XCURSES)
           convert formatted input from a window

     vwprintf(3C)
           See vfwprintf(3C)

     vwprintw(3CURSES)
           See curs_printw(3CURSES)

     vwprintw(3XCURSES)
           print formatted output in window

     vwscanf(3C)
           See fwscanf(3C)

     vwscanw(3CURSES)
           See curs_scanw(3CURSES)

     vwscanw(3XCURSES)
           convert formatted input from a window

     wadd_wch(3XCURSES)
           See add_wch(3XCURSES)

     wadd_wchnstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     wadd_wchstr(3XCURSES)
           See add_wchnstr(3XCURSES)

     waddch(3CURSES)
           See curs_addch(3CURSES)

     waddch(3XCURSES)
           See addch(3XCURSES)

     waddchnstr(3CURSES)
           See curs_addchstr(3CURSES)

     waddchnstr(3XCURSES)
           See addchstr(3XCURSES)

     waddchstr(3CURSES)
           See curs_addchstr(3CURSES)

     waddchstr(3XCURSES)
           See addchstr(3XCURSES)

     waddnstr(3CURSES)
           See curs_addstr(3CURSES)

     waddnstr(3XCURSES)
           See addnstr(3XCURSES)

     waddnwstr(3CURSES)
           See curs_addwstr(3CURSES)

     waddnwstr(3XCURSES)
           See addnwstr(3XCURSES)

     waddstr(3CURSES)
           See curs_addstr(3CURSES)

     waddstr(3XCURSES)
           See addnstr(3XCURSES)

     waddwch(3CURSES)
           See curs_addwch(3CURSES)

     waddwchnstr(3CURSES)
           See curs_addwchstr(3CURSES)

     waddwchstr(3CURSES)
           See curs_addwchstr(3CURSES)

     waddwstr(3CURSES)
           See curs_addwstr(3CURSES)

     waddwstr(3XCURSES)
           See addnwstr(3XCURSES)

     wadjcurspos(3CURSES)
           See curs_alecompat(3CURSES)

     wait(3UCB)
           wait for process to terminate or stop

     wait3(3C)
           wait for process to terminate or stop

     wait3(3UCB)
           See wait(3UCB)

     wait4(3C)
           See wait3(3C)

     wait4(3UCB)
           See wait(3UCB)

     waitpid(3UCB)
           See wait(3UCB)

     walkcontext(3C)
           walk stack pointed to by ucontext

     watchmalloc(3MALLOC)
           debugging memory allocator

     watof(3C)
           See wcstod(3C)

     watoi(3C)
           See wcstol(3C)

     watol(3C)
           See wcstol(3C)

     watoll(3C)
           See wcstol(3C)

     wattr_get(3XCURSES)
           See attr_get(3XCURSES)

     wattr_off(3XCURSES)
           See attr_get(3XCURSES)

     wattr_on(3XCURSES)
           See attr_get(3XCURSES)

     wattr_set(3XCURSES)
           See attr_get(3XCURSES)

     wattroff(3CURSES)
           See curs_attr(3CURSES)

     wattroff(3XCURSES)
           See attroff(3XCURSES)

     wattron(3CURSES)
           See curs_attr(3CURSES)

     wattron(3XCURSES)
           See attroff(3XCURSES)

     wattrset(3CURSES)
           See curs_attr(3CURSES)

     wattrset(3XCURSES)
           See attroff(3XCURSES)

     wbkgd(3CURSES)
           See curs_bkgd(3CURSES)

     wbkgd(3XCURSES)
           See bkgd(3XCURSES)

     wbkgdset(3CURSES)
           See curs_bkgd(3CURSES)

     wbkgdset(3XCURSES)
           See bkgd(3XCURSES)

     wbkgrnd(3XCURSES)
           See bkgrnd(3XCURSES)

     wbkgrndset(3XCURSES)
           See bkgrnd(3XCURSES)

     wborder(3CURSES)
           See curs_border(3CURSES)

     wborder(3XCURSES)
           See border(3XCURSES)

     wborder_set(3XCURSES)
           See border_set(3XCURSES)

     wchgat(3XCURSES)
           See chgat(3XCURSES)

     wclear(3CURSES)
           See curs_clear(3CURSES)

     wclear(3XCURSES)
           See clear(3XCURSES)

     wclrtobot(3CURSES)
           See curs_clear(3CURSES)

     wclrtobot(3XCURSES)
           See clrtobot(3XCURSES)

     wclrtoeol(3CURSES)
           See curs_clear(3CURSES)

     wclrtoeol(3XCURSES)
           See clrtoeol(3XCURSES)

     wcolor_set(3XCURSES)
           See attr_get(3XCURSES)

     wcrtomb(3C)
           convert a wide-character code to a character (restart-
           able)

     wcscat(3C)
           See wcstring(3C)

     wcschr(3C)
           See wcstring(3C)

     wcscmp(3C)
           See wcstring(3C)

     wcscoll(3C)
           wide  character  string  comparison  using   collating
           information

     wcscpy(3C)
           See wcstring(3C)

     wcscspn(3C)
           See wcstring(3C)

     wcsetno(3C)
           See cset(3C)

     wcsftime(3C)
           convert date and time to wide character string

     wcslen(3C)
           See wcstring(3C)

     wcsncat(3C)
           See wcstring(3C)

     wcsncmp(3C)
           See wcstring(3C)

     wcsncpy(3C)
           See wcstring(3C)

     wcspbrk(3C)
           See wcstring(3C)

     wcsrchr(3C)
           See wcstring(3C)

     wcsrtombs(3C)
           convert a wide-character string to a character  string
           (restartable)

     wcsspn(3C)
           See wcstring(3C)

     wcsstr(3C)
           find a wide-character substring

     wcstod(3C)
           convert  wide  character  string  to  double-precision
           number

     wcstok(3C)
           See wcstring(3C)

     wcstol(3C)
           convert wide character string to long integer

     wcstombs(3C)
           convert a wide-character string to a character string

     wcstoul(3C)
           convert wide character string to unsigned long

     wcstring(3C)
           wide-character string operations

     wcswcs(3C)
           See wcstring(3C)

     wcswidth(3C)
           number of column positions of a wide-character string

     wcsxfrm(3C)
           wide character string transformation

     wctob(3C)
           wide-character to single-byte conversion

     wctomb(3C)
           convert a wide-character code to a character

     wctrans(3C)
           define character mapping

     wctype(3C)
           define character class

     wcursyncup(3CURSES)
           See curs_window(3CURSES)

     wcursyncup(3XCURSES)
           See syncok(3XCURSES)

     wcwidth(3C)
           number of column positions of a wide-character code

     wdelch(3CURSES)
           See curs_delch(3CURSES)

     wdelch(3XCURSES)
           See delch(3XCURSES)

     wdeleteln(3CURSES)
           See curs_deleteln(3CURSES)

     wdeleteln(3XCURSES)
           See deleteln(3XCURSES)

     wecho_wchar(3XCURSES)
           See echo_wchar(3XCURSES)

     wechochar(3CURSES)
           See curs_addch(3CURSES)

     wechochar(3XCURSES)
           See echochar(3XCURSES)

     wechowchar(3CURSES)
           See curs_addwch(3CURSES)

     werase(3CURSES)
           See curs_clear(3CURSES)

     werase(3XCURSES)
           See clear(3XCURSES)

     wget_wch(3XCURSES)
           See get_wch(3XCURSES)

     wget_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     wgetbkgrnd(3XCURSES)
           See bkgrnd(3XCURSES)

     wgetch(3CURSES)
           See curs_getch(3CURSES)

     wgetch(3XCURSES)
           See getch(3XCURSES)

     wgetn_wstr(3XCURSES)
           See getn_wstr(3XCURSES)

     wgetnstr(3CURSES)
           See curs_getstr(3CURSES)

     wgetnstr(3XCURSES)
           See getnstr(3XCURSES)

     wgetnwstr(3CURSES)
           See curs_getwstr(3CURSES)

     wgetstr(3CURSES)
           See curs_getstr(3CURSES)

     wgetstr(3XCURSES)
           See getnstr(3XCURSES)

     wgetwch(3CURSES)
           See curs_getwch(3CURSES)

     wgetwstr(3CURSES)
           See curs_getwstr(3CURSES)

     whline(3CURSES)
           See curs_border(3CURSES)

     whline(3XCURSES)
           See hline(3XCURSES)

     whline_set(3XCURSES)
           See hline_set(3XCURSES)

     win_wch(3XCURSES)
           See in_wch(3XCURSES)

     win_wchnstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     win_wchstr(3XCURSES)
           See in_wchnstr(3XCURSES)

     winch(3CURSES)
           See curs_inch(3CURSES)

     winch(3XCURSES)
           See inch(3XCURSES)

     winchnstr(3CURSES)
           See curs_inchstr(3CURSES)

     winchnstr(3XCURSES)
           See inchnstr(3XCURSES)

     winchstr(3CURSES)
           See curs_inchstr(3CURSES)

     winchstr(3XCURSES)
           See inchnstr(3XCURSES)

     windex(3C)
           See wcstring(3C)

     winnstr(3CURSES)
           See curs_instr(3CURSES)

     winnstr(3XCURSES)
           See innstr(3XCURSES)

     winnwstr(3CURSES)
           See curs_inwstr(3CURSES)

     winnwstr(3XCURSES)
           See innwstr(3XCURSES)

     wins_nwstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     wins_wch(3XCURSES)
           See ins_wch(3XCURSES)

     wins_wstr(3XCURSES)
           See ins_nwstr(3XCURSES)

     winsch(3CURSES)
           See curs_insch(3CURSES)

     winsch(3XCURSES)
           See insch(3XCURSES)

     winsdelln(3CURSES)
           See curs_deleteln(3CURSES)

     winsdelln(3XCURSES)
           See insdelln(3XCURSES)

     winsertln(3CURSES)
           See curs_deleteln(3CURSES)

     winsertln(3XCURSES)
           See insertln(3XCURSES)

     winsnstr(3CURSES)
           See curs_insstr(3CURSES)

     winsnstr(3XCURSES)
           See insnstr(3XCURSES)

     winsnwstr(3CURSES)
           See curs_inswstr(3CURSES)

     winsstr(3CURSES)
           See curs_insstr(3CURSES)

     winsstr(3XCURSES)
           See insnstr(3XCURSES)

     winstr(3CURSES)
           See curs_instr(3CURSES)

     winstr(3XCURSES)
           See innstr(3XCURSES)

     winswch(3CURSES)
           See curs_inswch(3CURSES)

     winswstr(3CURSES)
           See curs_inswstr(3CURSES)

     winwch(3CURSES)
           See curs_inwch(3CURSES)

     winwchnstr(3CURSES)
           See curs_inwchstr(3CURSES)

     winwchstr(3CURSES)
           See curs_inwchstr(3CURSES)

     winwstr(3CURSES)
           See curs_inwstr(3CURSES)

     winwstr(3XCURSES)
           See innwstr(3XCURSES)

     wmemchr(3C)
           find a wide-character in memory

     wmemcmp(3C)
           compare wide-characters in memory

     wmemcpy(3C)
           copy wide-characters in memory

     wmemmove(3C)
           copy wide-characters in memory with overlapping areas

     wmemset(3C)
           set wide-characters in memory

     wmove(3CURSES)
           See curs_move(3CURSES)

     wmove(3XCURSES)
           See move(3XCURSES)

     wmovenextch(3CURSES)
           See curs_alecompat(3CURSES)

     wmoveprevch(3CURSES)
           See curs_alecompat(3CURSES)

     wnoutrefresh(3CURSES)
           See curs_refresh(3CURSES)

     wnoutrefresh(3XCURSES)
           See doupdate(3XCURSES)

     wordexp(3C)
           perform word expansions

     wordfree(3C)
           See wordexp(3C)

     wprintf(3C)
           See fwprintf(3C)

     wprintw(3CURSES)
           See curs_printw(3CURSES)

     wprintw(3XCURSES)
           See mvprintw(3XCURSES)

     wredrawln(3CURSES)
           See curs_refresh(3CURSES)

     wredrawln(3XCURSES)
           See redrawwin(3XCURSES)

     wrefresh(3CURSES)
           See curs_refresh(3CURSES)

     wrefresh(3XCURSES)
           See doupdate(3XCURSES)

     wrindex(3C)
           See wcstring(3C)

     write_vtoc(3EXT)
           See read_vtoc(3EXT)

     wscanf(3C)
           See fwscanf(3C)

     wscanw(3CURSES)
           See curs_scanw(3CURSES)

     wscanw(3XCURSES)
           See mvscanw(3XCURSES)

     wscasecmp(3C)
           See wstring(3C)

     wscat(3C)
           See wcstring(3C)

     wschr(3C)
           See wcstring(3C)

     wscmp(3C)
           See wcstring(3C)

     wscol(3C)
           See wstring(3C)

     wscoll(3C)
           See wcscoll(3C)

     wscpy(3C)
           See wcstring(3C)

     wscrl(3CURSES)
           See curs_scroll(3CURSES)

     wscrl(3XCURSES)
           See scrl(3XCURSES)

     wscspn(3C)
           See wcstring(3C)

     wsdup(3C)
           See wstring(3C)

     wsetscrreg(3CURSES)
           See curs_outopts(3CURSES)

     wsetscrreg(3XCURSES)
           See clearok(3XCURSES)

     wslen(3C)
           See wcstring(3C)

     wsncasecmp(3C)
           See wstring(3C)

     wsncat(3C)
           See wcstring(3C)

     wsncmp(3C)
           See wcstring(3C)

     wsncpy(3C)
           See wcstring(3C)

     wspbrk(3C)
           See wcstring(3C)

     wsprintf(3C)
           formatted output conversion

     wsrchr(3C)
           See wcstring(3C)

     wsreg_add_child_component(3WSREG)
           add or remove a child component

     wsreg_add_compatible_version(3WSREG)
           add or remove a backward-compatible version

     wsreg_add_dependent_component(3WSREG)
           add or remove a dependent component

     wsreg_add_display_name(3WSREG)
           add, remove, or return a localized display name

     wsreg_add_required_component(3WSREG)
           add or remove a required component

     wsreg_can_access_registry(3WSREG)
           determine access to product install registry

     wsreg_clone_component(3WSREG)
           clone a component

     wsreg_components_equal(3WSREG)
           determine equality of two components

     wsreg_create_component(3WSREG)
           create or release a component

     wsreg_free_component(3WSREG)
           See wsreg_create_component(3WSREG)

     wsreg_free_component_array(3WSREG)
           See wsreg_create_component(3WSREG)

     wsreg_get(3WSREG)
           query product install registry

     wsreg_get_all(3WSREG)
           See wsreg_get(3WSREG)

     wsreg_get_child_components(3WSREG)
           See wsreg_add_child_component(3WSREG)

     wsreg_get_compatible_versions(3WSREG)
           See wsreg_add_compatible_version(3WSREG)

     wsreg_get_data(3WSREG)
           See wsreg_set_data(3WSREG)

     wsreg_get_data_pairs(3WSREG)
           See wsreg_set_data(3WSREG)

     wsreg_get_dependent_components(3WSREG)
           See wsreg_add_dependent_component(3WSREG)

     wsreg_get_display_languages(3WSREG)
           See wsreg_add_display_name(3WSREG)

     wsreg_get_display_name(3WSREG)
           See wsreg_add_display_name(3WSREG)

     wsreg_get_id(3WSREG)
           See wsreg_set_id(3WSREG)

     wsreg_get_instance(3WSREG)
           See wsreg_set_instance(3WSREG)

     wsreg_get_location(3WSREG)
           See wsreg_set_location(3WSREG)

     wsreg_get_parent(3WSREG)
           See wsreg_set_parent(3WSREG)

     wsreg_get_required_components(3WSREG)
           See wsreg_add_required_component(3WSREG)

     wsreg_get_type(3WSREG)
           See wsreg_set_type(3WSREG)

     wsreg_get_uninstaller(3WSREG)
           See wsreg_set_uninstaller(3WSREG)

     wsreg_get_unique_name(3WSREG)
           See wsreg_set_unique_name(3WSREG)

     wsreg_get_vendor(3WSREG)
           See wsreg_set_vendor(3WSREG)

     wsreg_get_version(3WSREG)
           See wsreg_set_version(3WSREG)

     wsreg_initialize(3WSREG)
           initialize wsreg library

     wsreg_query_create(3WSREG)
           create a new query

     wsreg_query_free(3WSREG)
           See wsreg_query_create(3WSREG)

     wsreg_query_get_id(3WSREG)
           See wsreg_query_set_id(3WSREG)

     wsreg_query_get_instance(3WSREG)
           See wsreg_query_set_instance(3WSREG)

     wsreg_query_get_location(3WSREG)
           See wsreg_query_set_location(3WSREG)

     wsreg_query_get_unique_name(3WSREG)
           See wsreg_query_set_unique_name(3WSREG)

     wsreg_query_get_version(3WSREG)
           See wsreg_query_set_version(3WSREG)

     wsreg_query_set_id(3WSREG)
           set or get the uuid of a query

     wsreg_query_set_instance(3WSREG)
           set or get the instance of a query

     wsreg_query_set_location(3WSREG)
           set or get the location of a query

     wsreg_query_set_unique_name(3WSREG)
           set or get the unique name of a query

     wsreg_query_set_version(3WSREG)
           set or get the version of a query

     wsreg_register(3WSREG)
           register a component in the product install registry

     wsreg_remove_child_component(3WSREG)
           See wsreg_add_child_component(3WSREG)

     wsreg_remove_compatible_version(3WSREG)
           See wsreg_add_compatible_version(3WSREG)

     wsreg_remove_dependent_component(3WSREG)
           See wsreg_add_dependent_component(3WSREG)

     wsreg_remove_display_name(3WSREG)
           See wsreg_add_display_name(3WSREG)

     wsreg_remove_required_component(3WSREG)
           See wsreg_add_required_component(3WSREG)

     wsreg_set_data(3WSREG)
           add or retrieve a key-value pair

     wsreg_set_id(3WSREG)
           set or get the uuid of a component

     wsreg_set_instance(3WSREG)
           set or get the instance of a component

     wsreg_set_location(3WSREG)
           set or get the location of a component

     wsreg_set_parent(3WSREG)
           set or get the parent of a component

     wsreg_set_type(3WSREG)
           set or get the type of a component

     wsreg_set_uninstaller(3WSREG)
           set or get the uninstaller of a component

     wsreg_set_unique_name(3WSREG)
           set or get the unique name of a component

     wsreg_set_vendor(3WSREG)
           set or get the vendor of a componentt

     wsreg_set_version(3WSREG)
           set or get the version of a component

     wsreg_unregister(3WSREG)
           remove a component from the product install registry

     wsscanf(3C)
           formatted input conversion

     wsspn(3C)
           See wcstring(3C)

     wstandend(3CURSES)
           See curs_attr(3CURSES)

     wstandend(3XCURSES)
           See standend(3XCURSES)

     wstandout(3CURSES)
           See curs_attr(3CURSES)

     wstandout(3XCURSES)
           See standend(3XCURSES)

     wstat(3HEAD)
           wait status

     wstod(3C)
           See wcstod(3C)

     wstok(3C)
           See wcstring(3C)

     wstol(3C)
           See wcstol(3C)

     wstostr(3C)
           See strtows(3C)

     wstring(3C)
           Process Code string operations

     wsxfrm(3C)
           See wcsxfrm(3C)

     wsyncdown(3CURSES)
           See curs_window(3CURSES)

     wsyncdown(3XCURSES)
           See syncok(3XCURSES)

     wsyncup(3CURSES)
           See curs_window(3CURSES)

     wsyncup(3XCURSES)
           See syncok(3XCURSES)

     wtimeout(3CURSES)
           See curs_inopts(3CURSES)

     wtimeout(3XCURSES)
           See notimeout(3XCURSES)

     wtouchln(3CURSES)
           See curs_touch(3CURSES)

     wtouchln(3XCURSES)
           See is_linetouched(3XCURSES)

     wunctrl(3XCURSES)
           generate printable representation of a wide character

     wvline(3CURSES)
           See curs_border(3CURSES)

     wvline(3XCURSES)
           See hline(3XCURSES)

     wvline_set(3XCURSES)
           See hline_set(3XCURSES)

     xdr(3NSL)
           library routines for external data representation

     xdr_accepted_reply(3NSL)
           See rpc_xdr(3NSL)

     xdr_admin(3NSL)
           library routines for external data representation

     xdr_array(3NSL)
           See xdr_complex(3NSL)

     xdr_authsys_parms(3NSL)
           See rpc_xdr(3NSL)

     xdr_authunix_parms(3NSL)
           See rpc_soc(3NSL)

     xdr_bool(3NSL)
           See xdr_simple(3NSL)

     xdr_bytes(3NSL)
           See xdr_complex(3NSL)

     xdr_callhdr(3NSL)
           See rpc_xdr(3NSL)

     xdr_callmsg(3NSL)
           See rpc_xdr(3NSL)

     xdr_char(3NSL)
           See xdr_simple(3NSL)

     xdr_complex(3NSL)
           library routines for external data representation

     xdr_control(3NSL)
           See xdr_admin(3NSL)

     xdr_create(3NSL)
           library  routines  for  external  data  representation
           stream creation

     xdr_destroy(3NSL)
           See xdr_create(3NSL)

     xdr_double(3NSL)
           See xdr_simple(3NSL)

     xdr_enum(3NSL)
           See xdr_simple(3NSL)

     xdr_float(3NSL)
           See xdr_simple(3NSL)

     xdr_free(3NSL)
           See xdr_simple(3NSL)

     xdr_getpos(3NSL)
           See xdr_admin(3NSL)

     xdr_hyper(3NSL)
           See xdr_simple(3NSL)

     xdr_inline(3NSL)
           See xdr_admin(3NSL)

     xdr_int(3NSL)
           See xdr_simple(3NSL)

     xdr_long(3NSL)
           See xdr_simple(3NSL)

     xdr_longlong_t(3NSL)
           See xdr_simple(3NSL)

     xdr_opaque(3NSL)
           See xdr_complex(3NSL)

     xdr_opaque_auth(3NSL)
           See rpc_xdr(3NSL)

     xdr_pointer(3NSL)
           See xdr_complex(3NSL)

     xdr_quadruple(3NSL)
           See xdr_simple(3NSL)

     xdr_reference(3NSL)
           See xdr_complex(3NSL)

     xdr_rejected_reply(3NSL)
           See rpc_xdr(3NSL)

     xdr_replymsg(3NSL)
           See rpc_xdr(3NSL)

     xdr_setpos(3NSL)
           See xdr_admin(3NSL)

     xdr_short(3NSL)
           See xdr_simple(3NSL)

     xdr_simple(3NSL)
           library routines for external data representation

     xdr_sizeof(3NSL)
           See xdr_admin(3NSL)

     xdr_string(3NSL)
           See xdr_complex(3NSL)

     xdr_u_char(3NSL)
           See xdr_simple(3NSL)

     xdr_u_hyper(3NSL)
           See xdr_simple(3NSL)

     xdr_u_int(3NSL)
           See xdr_simple(3NSL)

     xdr_u_long(3NSL)
           See xdr_simple(3NSL)

     xdr_u_longlong_t(3NSL)
           See xdr_simple(3NSL)

     xdr_u_short(3NSL)
           See xdr_simple(3NSL)

     xdr_union(3NSL)
           See xdr_complex(3NSL)

     xdr_vector(3NSL)
           See xdr_complex(3NSL)

     xdr_void(3NSL)
           See xdr_simple(3NSL)

     xdr_wrapstring(3NSL)
           See xdr_complex(3NSL)

     xdrmem_create(3NSL)
           See xdr_create(3NSL)

     xdrrec_create(3NSL)
           See xdr_create(3NSL)

     xdrrec_endofrecord(3NSL)
           See xdr_admin(3NSL)

     xdrrec_eof(3NSL)
           See xdr_admin(3NSL)

     xdrrec_readbytes(3NSL)
           See xdr_admin(3NSL)

     xdrrec_skiprecord(3NSL)
           See xdr_admin(3NSL)

     xdrstdio_create(3NSL)
           See xdr_create(3NSL)

     xfn(3XFN)
           overview of the XFN interface

     xfn_attributes(3XFN)
           an overview of XFN attribute operations

     xfn_composite_names(3XFN)
           XFN composite syntax: an overview of  the  syntax  for
           XFN composite name

     xfn_compound_names(3XFN)
           XFN compound syntax: an overview of XFN model for com-
           pound name parsing

     xfn_links(3XFN)
           XFN links: an overview of XFN links

     xfn_status_codes(3XFN)
           descriptions of XFN status codes

     xprt_register(3NSL)
           See rpc_svc_reg(3NSL)

     xprt_unregister(3NSL)
           See rpc_svc_reg(3NSL)

     y0(3M)
           Bessel functions of the second kind

     y1(3M)
           See y0(3M)

     yn(3M)
           See y0(3M)

     yp_all(3NSL)
           See ypclnt(3NSL)

     yp_bind(3NSL)
           See ypclnt(3NSL)

     yp_first(3NSL)
           See ypclnt(3NSL)

     yp_get_default_domain(3NSL)
           See ypclnt(3NSL)

     yp_master(3NSL)
           See ypclnt(3NSL)

     yp_match(3NSL)
           See ypclnt(3NSL)

     yp_next(3NSL)
           See ypclnt(3NSL)

     yp_order(3NSL)
           See ypclnt(3NSL)

     yp_unbind(3NSL)
           See ypclnt(3NSL)

     yp_update(3NSL)
           change NIS information

     ypclnt(3NSL)
           NIS Version 2 client interface

     yperr_string(3NSL)
           See ypclnt(3NSL)

     ypprot_err(3NSL)
           See ypclnt(3NSL)


Man(1) output converted with man2html