Fix some backward conditional compilation
This commit is contained in:
parent
731de13347
commit
abb60c9c2f
|
@ -75,4 +75,4 @@ int task_spawnattr_getstacksize(FAR const posix_spawnattr_t *attr,
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_ARCH_ADDRENV */
|
#endif /* !CONFIG_ARCH_ADDRENV */
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
#include <spawn.h>
|
#include <spawn.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#ifdef CONFIG_ARCH_ADDRENV
|
#ifndef CONFIG_ARCH_ADDRENV
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
|
@ -74,4 +74,4 @@ int task_spawnattr_setstacksize(FAR posix_spawnattr_t *attr, size_t stacksize)
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_ARCH_ADDRENV */
|
#endif /* !CONFIG_ARCH_ADDRENV */
|
||||||
|
|
Loading…
Reference in New Issue