diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 10:07:16 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 10:11:29 -0400 |
commit | 67975a5944706e382fe1e7b00d226715c6242358 (patch) | |
tree | e93dd37df57f49d4327567479521014f380206e5 /include/deliverable.h | |
parent | 30c9945e0da19305ebad88a2835653ff4f409313 (diff) | |
download | stasis-67975a5944706e382fe1e7b00d226715c6242358.tar.gz |
Mass attempt at windows portability
Diffstat (limited to 'include/deliverable.h')
-rw-r--r-- | include/deliverable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/deliverable.h b/include/deliverable.h index effd098..f9fb364 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -6,7 +6,7 @@ #include <string.h> #include <stdbool.h> #include <unistd.h> -#include <sys/utsname.h> + #include "omc.h" #define DELIVERY_PLATFORM_MAX 4 @@ -139,7 +139,7 @@ struct Delivery { * \brief Global runtime variables */ struct Runtime { - RuntimeEnv *environ; ///< Environment variables + struct StrList *env; ///< Environment variables } runtime; /*! \struct Test |