Skip to content

Commit

Permalink
Merge pull request wolfcw#453 from martinetd/musl
Browse files Browse the repository at this point in the history
fix build on recent musl (stat64 compat)
  • Loading branch information
wolfcw authored Jan 18, 2024
2 parents 2656519 + b2fe742 commit f329868
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libfaketime.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

#define _GNU_SOURCE /* required to get RTLD_NEXT defined */

#define _LARGEFILE64_SOURCE 1 /* required for stat64 on musl */

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
Expand Down

0 comments on commit f329868

Please sign in to comment.