Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e50f04d authored by Casey Dahlin's avatar Casey Dahlin
Browse files

Revert change to win32 isatty stub



This is attempting to fix build breakage caused by redefining the isatty stub
for win32.

Change-Id: I5f854934cb9d2b2981f6349045e85d9ad737aa77
Signed-off-by: default avatarCasey Dahlin <sadmac@google.com>
parent 2535cae0
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -5,6 +5,13 @@
#include <string>
#include <iostream>

#ifdef _WIN32
int isatty(int  fd)
{
    return (fd == 0);
}
#endif

using std::string;
using std::cerr;
using std::endl;
+0 −7
Original line number Diff line number Diff line
@@ -7,13 +7,6 @@

extern YYSTYPE yylval;

#ifdef _WIN32
static inline int isatty(int fd)
{
  return 0;
}
#endif

// comment and whitespace handling
// these functions save a copy of the buffer
static void begin_extra_text(unsigned lineno, which_extra_text which);