]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_nl.c
ncurses 5.6 - patch 20080830
[ncurses.git] / ncurses / base / lib_nl.c
index 75d4a638148d6547327cfaff9b2aa2292ea8b8e3..32515da0be816c0cfde8335dba321e59c4046bf9 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
 /****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc.                        *
+ * Copyright (c) 1998,1999,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            *
  *                                                                          *
  * 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>                         *
  ****************************************************************************/
 
  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
  ****************************************************************************/
 
-
 /*
  *     nl.c
  *
 /*
  *     nl.c
  *
 
 #include <curses.priv.h>
 
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_nl.c,v 1.4 1999/10/22 22:31:51 tom Exp $")
+MODULE_ID("$Id: lib_nl.c,v 1.8 2000/12/10 02:43:27 tom Exp $")
 
 #ifdef __EMX__
 #include <io.h>
 
 #ifdef __EMX__
 #include <io.h>
-#include <fcntl.h>
 #endif
 
 #endif
 
-int nl(void)
+NCURSES_EXPORT(int)
+nl(void)
 {
 {
-       T((T_CALLED("nl()")));
+    T((T_CALLED("nl()")));
 
 
-       SP->_nl = TRUE;
+    SP->_nl = TRUE;
 
 #ifdef __EMX__
 
 #ifdef __EMX__
-       _nc_flush();
-       _fsetmode(NC_OUTPUT, "t");
+    _nc_flush();
+    _fsetmode(NC_OUTPUT, "t");
 #endif
 
 #endif
 
-       returnCode(OK);
+    returnCode(OK);
 }
 
 }
 
-int nonl(void)
+NCURSES_EXPORT(int)
+nonl(void)
 {
 {
-       T((T_CALLED("nonl()")));
+    T((T_CALLED("nonl()")));
 
 
-       SP->_nl = FALSE;
+    SP->_nl = FALSE;
 
 #ifdef __EMX__
 
 #ifdef __EMX__
-       _nc_flush();
-       _fsetmode(NC_OUTPUT, "b");
+    _nc_flush();
+    _fsetmode(NC_OUTPUT, "b");
 #endif
 
 #endif
 
-       returnCode(OK);
+    returnCode(OK);
 }
 }