You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* See LICENSE of license details. */
|
|
#ifndef _SIFIVE_SYS_STUB_H
|
|
#define _SIFIVE_SYS_STUB_H
|
|
|
|
static inline int _stub(int err)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
#endif /* _SIFIVE_SYS_STUB_H */
|