]> The Tcpdump Group git mirrors - tcpdump/blobdiff - cpack.c
Added options to gitattributes
[tcpdump] / cpack.c
diff --git a/cpack.c b/cpack.c
index 14c0a9ee2a3e06ab1e2391177bf0139255aa0dca..c921b390591872795c8cdfbedf7fec8c4767e905 100644 (file)
--- a/cpack.c
+++ b/cpack.c
@@ -38,7 +38,7 @@
 #include "cpack.h"
 #include "extract.h"
 
-static u_int8_t *
+u_int8_t *
 cpack_next_boundary(u_int8_t *buf, u_int8_t *p, size_t alignment)
 {
        size_t misalignment = (size_t)(p - buf) % alignment;
@@ -53,7 +53,7 @@ cpack_next_boundary(u_int8_t *buf, u_int8_t *p, size_t alignment)
  * wordsize bytes remain in the buffer after the boundary.  Otherwise,
  * return a pointer to the boundary.
  */
-static u_int8_t *
+u_int8_t *
 cpack_align_and_reserve(struct cpack_state *cs, size_t wordsize)
 {
        u_int8_t *next;