Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7850 → Rev 7851

/programs/develop/ktcc/trunk/libc/dlfcn/dlfcn.c
85,5 → 85,7
 
// https://pubs.opengroup.org/onlinepubs/007908799/xsh/dlerror.html
char *dlerror(void) {
return strdup(__error);
char *ret = __error ? strdup(__error) : NULL;
__error = NULL;
return ret;
}