Fix some backward conditional compilation

This commit is contained in:
Gregory Nutt 2014-09-15 16:23:31 -06:00
parent 731de13347
commit abb60c9c2f
2 changed files with 3 additions and 3 deletions

View File

@ -75,4 +75,4 @@ int task_spawnattr_getstacksize(FAR const posix_spawnattr_t *attr,
return OK;
}
#endif /* CONFIG_ARCH_ADDRENV */
#endif /* !CONFIG_ARCH_ADDRENV */

View File

@ -43,7 +43,7 @@
#include <spawn.h>
#include <assert.h>
#ifdef CONFIG_ARCH_ADDRENV
#ifndef CONFIG_ARCH_ADDRENV
/****************************************************************************
* Public Functions
@ -74,4 +74,4 @@ int task_spawnattr_setstacksize(FAR posix_spawnattr_t *attr, size_t stacksize)
return OK;
}
#endif /* CONFIG_ARCH_ADDRENV */
#endif /* !CONFIG_ARCH_ADDRENV */