Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7851 → Rev 7850

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