From 36def9125c9adf4049a18105d48715ac8606e1ec Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 27 Oct 2016 19:47:07 -0500 Subject: rtems-docs: Fix many unnecessary back slashes --- posix_users/input_and_output.rst | 4 ++-- posix_users/process_environment.rst | 4 ++-- posix_users/signal.rst | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'posix_users') 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 int unmount( - const char \*mount_path + const char *mount_path ); **STATUS CODES:** @@ -767,7 +767,7 @@ writev - Vectored write to a file #include 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 int pthread_sigmask( int how, - const sigset_t \*set, - sigset_t \*oset + const sigset_t *set, + sigset_t *oset ); **STATUS CODES:** -- cgit v1.2.3