AP_Filesystem: BOOL for binary types

This commit is contained in:
muramura 2024-04-20 15:31:49 +09:00 committed by Peter Barker
parent bb1758ecb1
commit e86d5e113f
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ typedef struct {
#define MAX_FILES 16
static FAT_FILE *file_table[MAX_FILES];
static int isatty_(int fileno)
static bool isatty_(int fileno)
{
if (fileno >= 0 && fileno <= 2) {
return true;