]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/free.c
Clean up soctpair for NT. Add USE_PAIR to allow pair(2) use.
[openldap] / libraries / libldap / free.c
index f9569dd04a17d15f0ed6c4c89e412cc0514253e8..ae208894d018a4f3a5e3dfc6cf40c782dc11f352 100644 (file)
@@ -37,19 +37,19 @@ ldap_memvfree( void **v )
 }
 
 void *
-ldap_memalloc( size_t s )
+ldap_memalloc( ber_len_t s )
 {
        return LDAP_MALLOC( s );
 }
 
 void *
-ldap_memcalloc( size_t n, size_t s )
+ldap_memcalloc( ber_len_t n, ber_len_t s )
 {
        return LDAP_CALLOC( n, s );
 }
 
 void *
-ldap_memrealloc( void* p, size_t s )
+ldap_memrealloc( void* p, ber_len_t s )
 {
        return LDAP_REALLOC( p, s );
 }