Skip to content

Commit

Permalink
Clean
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikwidlund committed Jun 7, 2020
1 parent 86a2314 commit ac827f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

mkdir -p autotools m4
autoreconf --force --install
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ AM_PROG_CC_C_O
AC_PROG_CXX

AC_PREFIX_DEFAULT(/usr)
AC_CONFIG_FILES([Makefile docs/Makefile benchmark/Makefile examples/Makefile libdynamic.pc])
AC_CONFIG_FILES([Makefile docs/Makefile examples/Makefile libdynamic.pc])
AC_OUTPUT
2 changes: 1 addition & 1 deletion src/dynamic/segment.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ struct segment
size_t size;
};

segment segment_empty();
segment segment_empty(void);
segment segment_data(void *, size_t);
segment segment_string(char *);
segment segment_offset(segment , size_t);
Expand Down

0 comments on commit ac827f7

Please sign in to comment.