aboutsummaryrefslogtreecommitdiffstats
path: root/vppinfra/vppinfra/unix.h
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2016-08-15 11:12:27 -0400
committerDave Barach <dave@barachs.net>2016-08-15 11:12:40 -0400
commitc379999665febd12ec55bfb3a7545224f2b39d3d (patch)
tree8bf0c11e52c2162e1239b6c3f4a5f74b62a07409 /vppinfra/vppinfra/unix.h
parentb3d93dacfde8ab21bbce171fff2971b2ed7bce6a (diff)
VPP-327 Coding standards cleanup for vppinfra
Fix additional a few additional deviations reported elsewhere by checkstyle Change-Id: I026a8ae1c5b1856bbe3c4a555e1b690e7501b045 Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'vppinfra/vppinfra/unix.h')
-rw-r--r--vppinfra/vppinfra/unix.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/vppinfra/vppinfra/unix.h b/vppinfra/vppinfra/unix.h
index 519276888a6..29114cfece6 100644
--- a/vppinfra/vppinfra/unix.h
+++ b/vppinfra/vppinfra/unix.h
@@ -41,16 +41,24 @@
#include <vppinfra/error.h>
/* Number of bytes in a Unix file. */
-clib_error_t * unix_file_n_bytes (char * file, uword * result);
+clib_error_t *unix_file_n_bytes (char *file, uword * result);
/* Read file contents into given buffer. */
-clib_error_t *
-unix_file_read_contents (char * file, u8 * result, uword n_bytes);
+clib_error_t *unix_file_read_contents (char *file, u8 * result,
+ uword n_bytes);
/* Read and return contents of Unix file. */
-clib_error_t * unix_file_contents (char * file, u8 ** result);
+clib_error_t *unix_file_contents (char *file, u8 ** result);
/* As above but for /proc file system on Linux. */
-clib_error_t * unix_proc_file_contents (char * file, u8 ** result);
+clib_error_t *unix_proc_file_contents (char *file, u8 ** result);
#endif /* included_clib_unix_h */
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "gnu")
+ * End:
+ */