mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:37:34 +00:00
LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()
Just for semantic correctness and better visibility of those unimplemented stub functions.
This commit is contained in:
parent
d64d2ff07b
commit
b42f0b9650
8 changed files with 21 additions and 14 deletions
|
@ -25,7 +25,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <AK/LogStream.h>
|
||||
#include <AK/Format.h>
|
||||
#include <AK/PrintfImplementation.h>
|
||||
#include <AK/ScopedValueRollback.h>
|
||||
#include <AK/StdLibExtras.h>
|
||||
|
@ -1071,7 +1071,8 @@ int dbgputstr(const char* characters, ssize_t length)
|
|||
|
||||
char* tmpnam(char*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
dbgln("FIXME: Implement tmpnam()");
|
||||
TODO();
|
||||
}
|
||||
|
||||
FILE* popen(const char* command, const char* type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue