diff --git a/stubs-common/src/Stubs/Syscall/AArch32/Linux.hs b/stubs-common/src/Stubs/Syscall/AArch32/Linux.hs index 1e3f438..411a541 100644 --- a/stubs-common/src/Stubs/Syscall/AArch32/Linux.hs +++ b/stubs-common/src/Stubs/Syscall/AArch32/Linux.hs @@ -11,7 +11,9 @@ -- See -- for the system call number mapping module Stubs.Syscall.AArch32.Linux ( - aarch32LinuxSyscallABI + aarch32LinuxSyscallArgumentRegisters + , aarch32LinuxSyscallReturnRegisters + , aarch32LinuxSyscallABI ) where import qualified Data.Parameterized.Classes as PC diff --git a/stubs-common/src/Stubs/Syscall/X86_64/Linux.hs b/stubs-common/src/Stubs/Syscall/X86_64/Linux.hs index 67e34cb..eeed685 100644 --- a/stubs-common/src/Stubs/Syscall/X86_64/Linux.hs +++ b/stubs-common/src/Stubs/Syscall/X86_64/Linux.hs @@ -6,7 +6,11 @@ {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeOperators #-} -module Stubs.Syscall.X86_64.Linux ( x86_64LinuxSyscallABI ) where +module Stubs.Syscall.X86_64.Linux ( + x86_64LinuxSyscallArgumentRegisters + , x86_64LinuxSyscallReturnRegisters + , x86_64LinuxSyscallABI + ) where import qualified Data.Parameterized.Context as Ctx import qualified Data.Parameterized.NatRepr as PN