my_messnc.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #include "mysys_priv.h"
  4. int my_message_no_curses(uint my_error __attribute__((unused)),
  5.  const char *str, myf MyFlags)
  6. {
  7.   DBUG_ENTER("my_message_no_curses");
  8.   DBUG_PRINT("enter",("message: %s",str));
  9.   (void) fflush(stdout);
  10.   if (MyFlags & ME_BELL)
  11.     (void) fputc('07',stderr); /* Bell */
  12.   if (my_progname)
  13.   {
  14.     (void)fputs(my_progname,stderr); (void)fputs(": ",stderr);
  15.   }
  16.   (void)fputs(str,stderr);
  17.   (void)fputc('n',stderr);
  18.   (void)fflush(stderr);
  19.   DBUG_RETURN(0);
  20. }