Skip to content

Commit

Permalink
Fix musl build
Browse files Browse the repository at this point in the history
Add missing header `stdint.h` to fix build with the musl C library:

```
wavemon.h:240:7: error: unknown type name ‘int8_t’
```
  • Loading branch information
joerg-krause committed Jul 28, 2016
1 parent a33b956 commit 01e987a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions wavemon.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* with wavemon; see the file COPYING. If not, write to the Free Software
* Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
Expand Down

0 comments on commit 01e987a

Please sign in to comment.