X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcontext.c;h=85c417b414d9fe2b9c49f06cb7621bde05636218;hb=f2e30c122b4b97a5227f40e67eeae0e593b0b207;hp=4b1e49d09e889c0388b6121b8ceebc19f11c440b;hpb=a9dd2a16b8b5677b0ad4ea19fb2689fbb5ef88a4;p=platform%2Fcore%2Fsystem%2Ftizen-platform-wrapper.git diff --git a/src/context.c b/src/context.c index 4b1e49d..85c417b 100644 --- a/src/context.c +++ b/src/context.c @@ -42,7 +42,7 @@ #include "context.h" -inline uid_t get_uid(struct tzplatform_context *context) +uid_t get_uid(struct tzplatform_context *context) { uid_t result; @@ -54,7 +54,7 @@ inline uid_t get_uid(struct tzplatform_context *context) } #if _FOREIGN_HAS_(EUID) -inline uid_t get_euid(struct tzplatform_context *context) +uid_t get_euid(struct tzplatform_context *context) { uid_t result; @@ -67,7 +67,7 @@ inline uid_t get_euid(struct tzplatform_context *context) #endif #if _FOREIGN_HAS_(GID) -inline gid_t get_gid(struct tzplatform_context *context) +gid_t get_gid(struct tzplatform_context *context) { return getgid(); }