Skip to content

Commit

Permalink
fixup! feat: convert yield to use the driver library
Browse files Browse the repository at this point in the history
  • Loading branch information
mpolitzer committed Oct 23, 2023
1 parent 2a154db commit ac33720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux/libdriver/base/abi.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <string.h>
#include "abi.h"

uintptr_t align(uintptr_t p, size_t a)
static uintptr_t align(uintptr_t p, size_t a)
{
return (p + (a-1)) & ~(a-1);
}
Expand Down

0 comments on commit ac33720

Please sign in to comment.