mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-07-04 02:46:49 -04:00

- Use one common Makefile for all test device apps. - Use a single copy of syscall.[Sh]. - Update docs for building.
11 lines
259 B
C
11 lines
259 B
C
// SPDX-FileCopyrightText: 2024 Tillitis AB <tillitis.se>
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifndef TKEY_APP_SYSCALL_H
|
|
#define TKEY_APP_SYSCALL_H
|
|
|
|
int syscall(uint32_t number, uint32_t arg1, uint32_t arg2, uint32_t arg3);
|
|
|
|
#endif
|