]> git.sur5r.net Git - openldap/blobdiff - include/ac/assert.h
Vienna Bulk Commit
[openldap] / include / ac / assert.h
index 7a9044dab04665d96ef496615b3f2151ff80c0d5..a65e1c0cc2abbc07d83b83126acc6a68414cbb45 100644 (file)
  * create a replacement and hope it works
  */
 
-void   lber_pvt_assert(char* file, int line, char* test);
+void   ber_pvt_assert(char* file, int line, char* test);
 #define assert(test) \
        ((test) \
                ? (void)0 \
-               : lber_pvt_assert( __FILE__, __LINE__, LDAP_STRING(test)) )
+               : ber_pvt_assert( __FILE__, __LINE__, LDAP_STRING(test)) )
 
 #endif