aboutsummaryrefslogtreecommitdiff
path: root/pk/riscv-pk.c
blob: b25b33984d9c851d859fa93cdf646fedef05bd19 (plain)
1
2
3
4
5
6
// force the linker to pull in our __start from boot.S.
void* dummy()
{
  extern void __start();
  return &__start;
}