aboutsummaryrefslogtreecommitdiffstats
path: root/vppinfra/vppinfra/string.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/string.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/string.h')
-rw-r--r--vppinfra/vppinfra/string.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/vppinfra/vppinfra/string.h b/vppinfra/vppinfra/string.h
index 8a2918f80c1..8d28375ec0a 100644
--- a/vppinfra/vppinfra/string.h
+++ b/vppinfra/vppinfra/string.h
@@ -38,7 +38,7 @@
#ifndef included_clib_string_h
#define included_clib_string_h
-#include <vppinfra/clib.h> /* for CLIB_LINUX_KERNEL */
+#include <vppinfra/clib.h> /* for CLIB_LINUX_KERNEL */
#ifdef CLIB_LINUX_KERNEL
#include <linux/string.h>
@@ -53,7 +53,7 @@
#endif
/* Exchanges source and destination. */
-void clib_memswap (void * _a, void * _b, uword bytes);
+void clib_memswap (void *_a, void *_b, uword bytes);
#if __AVX__
#include <vppinfra/memcpy_avx.h>
@@ -64,3 +64,11 @@ void clib_memswap (void * _a, void * _b, uword bytes);
#endif
#endif /* included_clib_string_h */
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "gnu")
+ * End:
+ */