Add a global return_success() method implementation

This commit is contained in:
Martin Willi
2013-02-14 17:17:45 +01:00
parent de32b8aed6
commit 4755ab505d
3 changed files with 15 additions and 8 deletions
+8
View File
@@ -386,6 +386,14 @@ status_t return_failed()
return FAILED;
}
/**
* returns SUCCESS
*/
status_t return_success()
{
return SUCCESS;
}
/**
* nop operation
*/