*** empty log message ***

This commit is contained in:
hyung-hwan 2007-01-29 02:47:20 +00:00
parent a550d49d2a
commit 25a9c6c2d7
2 changed files with 17 additions and 28 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.157 2007-01-28 12:45:14 bacon Exp $
* $Id: awk.c,v 1.158 2007-01-29 02:47:20 bacon Exp $
*/
#include <ase/awk/awk.h>
@ -273,7 +273,6 @@ static ase_ssize_t process_extio_pipe (
case ASE_AWK_IO_WRITE:
{
int n;
/*
ase_size_t i;
for (i = 0; i < size; i++)
@ -281,11 +280,8 @@ static ase_ssize_t process_extio_pipe (
if (awk_fputc (data[i], (FILE*)epa->handle) == ASE_CHAR_EOF) return -1;
}
*/
#if defined(_WIN32)
n = _ftprintf ((FILE*)epa->handle, ASE_T("%.*s"), size, data);
#else
n = ase_fprintf ((FILE*)epa->handle, ASE_T("%.*s"), size, data);
#endif
int n = ase_fprintf (
(FILE*)epa->handle, ASE_T("%.*s"), size, data);
if (n < 0) return -1;
return size;
@ -359,15 +355,10 @@ static ase_ssize_t process_extio_file (
}
*/
int n;
#if defined(_WIN32)
n = _ftprintf (epa->handle, ASE_T("%.*s"), size, data);
#else
n = ase_fprintf ((FILE*)epa->handle, ASE_T("%.*s"), size, data);
#endif
int n = ase_fprintf (
(FILE*)epa->handle, ASE_T("%.*s"), size, data);
if (n < 0) return -1;
return size;
}
@ -926,18 +917,6 @@ int ase_main (int argc, ase_char_t* argv[])
_CrtSetDbgFlag (_CRTDBG_LEAK_CHECK_DF | _CRTDBG_ALLOC_MEM_DF | _CRTDBG_CHECK_ALWAYS_DF);
#endif*/
{
setlocale (LC_ALL, NULL);
FILE* fp = popen ("cat", "w");
if (fp != NULL)
{
wprintf (L"askdjflsajfldsakjfdsalkjflsakjfdsalkjfdsalkjfdsalkjfsalkjfdsafdsafdsaf\n");
fwprintf (fp, L"askdjflsajfldsakjfdsalkjflsakjfdsalkjfdsalkjfdsalkjfsalkjfdsafdsafdsaf\n");
fclose (fp);
}
return -1;
}
n = __main (argc, argv);
#if defined(__linux) && defined(_DEBUG)

View File

@ -1,5 +1,5 @@
/*
* $Id: main.c,v 1.6 2007-01-28 11:33:23 bacon Exp $
* $Id: main.c,v 1.7 2007-01-29 02:47:19 bacon Exp $
*/
#include <ase/types.h>
@ -17,7 +17,17 @@
#elif defined(ASE_CHAR_IS_MCHAR)
#define ase_main main
#ifdef __cplusplus
extern "C" { int ase_main (...); }
#else
extern int ase_main ();
#endif
int main (int argc, char* argv[], char** envp)
{
setlocale (LC_ALL, "");
return ase_main (argc, argv, envp);
}
#else /* ASE_CHAR_IS_WCHAR */