aboutsummaryrefslogtreecommitdiff
path: root/contrib/ncurses/ncurses/base/lib_echo.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ncurses/ncurses/base/lib_echo.c')
-rw-r--r--contrib/ncurses/ncurses/base/lib_echo.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/contrib/ncurses/ncurses/base/lib_echo.c b/contrib/ncurses/ncurses/base/lib_echo.c
index 4ccf97ff64c0..df44713d1a11 100644
--- a/contrib/ncurses/ncurses/base/lib_echo.c
+++ b/contrib/ncurses/ncurses/base/lib_echo.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc. *
+ * Copyright (c) 1998,2000 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the *
@@ -31,7 +31,6 @@
* and: Eric S. Raymond <esr@snark.thyrsus.com> *
****************************************************************************/
-
/*
* echo.c
*
@@ -43,18 +42,20 @@
#include <curses.priv.h>
-MODULE_ID("$Id: lib_echo.c,v 1.3 1998/10/12 13:15:33 Alexander.V.Lukyanov Exp $")
+MODULE_ID("$Id: lib_echo.c,v 1.5 2000/12/10 02:43:27 tom Exp $")
-int echo(void)
+NCURSES_EXPORT(int)
+echo(void)
{
- T((T_CALLED("echo()")));
- SP->_echo = TRUE;
- returnCode(OK);
+ T((T_CALLED("echo()")));
+ SP->_echo = TRUE;
+ returnCode(OK);
}
-int noecho(void)
+NCURSES_EXPORT(int)
+noecho(void)
{
- T((T_CALLED("noecho()")));
- SP->_echo = FALSE;
- returnCode(OK);
+ T((T_CALLED("noecho()")));
+ SP->_echo = FALSE;
+ returnCode(OK);
}