Print this page
2964 need POSIX 2008 locale object support
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Approved by: TBD

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/mdb/common/kmdb/mapfile_skel
          +++ new/usr/src/cmd/mdb/common/kmdb/mapfile_skel
↓ open down ↓ 36 lines elided ↑ open up ↑
  37   37  
  38   38  SYMBOL_SCOPE {
  39   39          global:
  40   40  
  41   41  /* END PROLOGUE */
  42   42  /* BEGIN EPILOGUE */
  43   43                  /*
  44   44                   * Secret additions to the module API
  45   45                   */
  46   46  
  47      -                /* Implementation detail of the ctype macros */
  48      -                __ctype;        /* variable */
  49   47                  /* There should be only one - ours */
  50   48                  errno;          /* variable */
       49 +                isprint;
       50 +                isalnum;
       51 +                isalpha;
       52 +                isgraph;
       53 +                iscntrl;
       54 +                isdigit;
       55 +                isxdigit;
       56 +                isupper;
       57 +                islower;
       58 +                ispunct;
       59 +                isspace;
  51   60  
  52   61                  mdb_tgt_aread;
  53   62                  mdb_dis_create;
  54   63                  mdb_dis_destroy;
  55   64  
  56   65          local:
  57   66                  *;
  58   67  };
  59   68  /* END EPILOGUE */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX