aboutsummaryrefslogtreecommitdiffstats
path: root/man3/dlopen.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/dlopen.3')
-rw-r--r--man3/dlopen.36
1 files changed, 3 insertions, 3 deletions
diff --git a/man3/dlopen.3 b/man3/dlopen.3
index b93c85d683..e2a50950dc 100644
--- a/man3/dlopen.3
+++ b/man3/dlopen.3
@@ -460,7 +460,7 @@ main(int argc, char **argv)
handle = dlopen("libm.so", RTLD_LAZY);
if (!handle) {
- fprintf(stderr, "%s\\n", dlerror());
+ fprintf(stderr, "%s\en", dlerror());
exit(EXIT_FAILURE);
}
@@ -477,11 +477,11 @@ main(int argc, char **argv)
.\" But in fact "gcc -O2 -Wall" will complain about the preceding cast.
if ((error = dlerror()) != NULL) {
- fprintf(stderr, "%s\\n", error);
+ fprintf(stderr, "%s\en", error);
exit(EXIT_FAILURE);
}
- printf("%f\\n", (*cosine)(2.0));
+ printf("%f\en", (*cosine)(2.0));
dlclose(handle);
exit(EXIT_SUCCESS);
}