summaryrefslogtreecommitdiffstats
path: root/posix_users
diff options
context:
space:
mode:
Diffstat (limited to 'posix_users')
-rw-r--r--posix_users/input_and_output.rst4
-rw-r--r--posix_users/process_environment.rst4
-rw-r--r--posix_users/signal.rst4
3 files changed, 6 insertions, 6 deletions
diff --git a/posix_users/input_and_output.rst b/posix_users/input_and_output.rst
index b236991..5a3b9d8 100644
--- a/posix_users/input_and_output.rst
+++ b/posix_users/input_and_output.rst
@@ -688,7 +688,7 @@ unmount - Unmount file systems
#include <libio.h>
int unmount(
- const char \*mount_path
+ const char *mount_path
);
**STATUS CODES:**
@@ -767,7 +767,7 @@ writev - Vectored write to a file
#include <sys/uio.h>
ssize_t writev(
int fd,
- const struct iovec \*iov,
+ const struct iovec *iov,
int iovcnt
);
diff --git a/posix_users/process_environment.rst b/posix_users/process_environment.rst
index bb1550c..0556d12 100644
--- a/posix_users/process_environment.rst
+++ b/posix_users/process_environment.rst
@@ -523,7 +523,7 @@ uname - Get System Name
.. code-block:: c
int uname(
- struct utsname \*name
+ struct utsname *name
);
**STATUS CODES:**
@@ -592,7 +592,7 @@ getenv - Get Environment Variables
.. code-block:: c
char *getenv(
- const char \*name
+ const char *name
);
**STATUS CODES:**
diff --git a/posix_users/signal.rst b/posix_users/signal.rst
index 9e976f8..490c132 100644
--- a/posix_users/signal.rst
+++ b/posix_users/signal.rst
@@ -527,8 +527,8 @@ pthread_sigmask - Examine and Change Thread Blocked Signals
#include <signal.h>
int pthread_sigmask(
int how,
- const sigset_t \*set,
- sigset_t \*oset
+ const sigset_t *set,
+ sigset_t *oset
);
**STATUS CODES:**