ObjFW  Diff

Differences From Artifact [ca9e9a8b30]:

To Artifact [44aae29ab2]:


426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
- (unsigned int)retainCount
{
	return OFMaxRetainCount;
}

- (bool)hasTerminal
{
#if defined(OF_WII)
	return true;
#elif defined(HAVE_ISATTY) && !defined(OF_WII_U)
	return isatty(_fd);
#else
	return false;
#endif
}







|







426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
- (unsigned int)retainCount
{
	return OFMaxRetainCount;
}

- (bool)hasTerminal
{
#if defined(OF_WII) || defined(OF_NINTENDO_3DS)
	return true;
#elif defined(HAVE_ISATTY) && !defined(OF_WII_U)
	return isatty(_fd);
#else
	return false;
#endif
}