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

@@ -19,10 +19,11 @@
  * CDDL HEADER END
  */
 /* BEGIN PROLOGUE */
 /*
  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright 2014 Garrett D'Amore <garrett@damore.org>
  */
 
 /*
  * This file is used to limit the symbols that are to be exported from the
  * debugger.  This ensures that dmods follow the module API.

@@ -42,14 +43,23 @@
 /* BEGIN EPILOGUE */
                 /*
                  * Secret additions to the module API
                  */
 
-                /* Implementation detail of the ctype macros */
-                __ctype;        /* variable */
                 /* There should be only one - ours */
                 errno;          /* variable */
+                isprint;
+                isalnum;
+                isalpha;
+                isgraph;
+                iscntrl;
+                isdigit;
+                isxdigit;
+                isupper;
+                islower;
+                ispunct;
+                isspace;
 
                 mdb_tgt_aread;
                 mdb_dis_create;
                 mdb_dis_destroy;