Changeset 649


Ignore:
Timestamp:
Sep 7, 2003, 5:20:58 AM (22 years ago)
Author:
zap
Message:

.

Location:
trunk/src/emx/src
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/iconv/iconv.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    1 /* OS/2 iconv() implementation through OS/2 Unicode API
    2    Copyright (C) 2001-2002 Free Software Foundation, Inc.
    3 
    4    This program is free software; you can redistribute it and/or modify it
    5    under the terms of the GNU Library General Public License as published
    6    by the Free Software Foundation; either version 2, or (at your option)
    7    any later version.
    8 
    9    This program is distributed in the hope that it will be useful,
    10    but WITHOUT ANY WARRANTY; without even the implied warranty of
    11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12    Library General Public License for more details.
    13 
    14    You should have received a copy of the GNU Library General Public
    15    License along with this program; if not, write to the Free Software
    16    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
    17    USA.  */
    18 
    19 /*
    20    This file implements an iconv wrapper based on OS/2 Unicode API.
    21 */
     1/* iconv wrapper based on OS/2 Unicode API. */
    222
    233#include <uconv.h>
  • trunk/src/emx/src/lib/io/_tempnam.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r648 r649  
    2828
    2929
    30 char *_tempnam (const char *dir, const char *prefix)
     30char *_STD(tempnam) (const char *dir, const char *prefix)
    3131{
    3232  const char *tmpdir;
  • trunk/src/emx/src/lib/termios/cfgetisp.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    44#include <sys/termio.h>         /* CBAUD */
    55
    6 speed_t _cfgetispeed (const struct termios *ptermios)
     6speed_t _STD(cfgetispeed) (const struct termios *ptermios)
    77{
    88  return ptermios->c_cflag & CBAUD;
  • trunk/src/emx/src/lib/termios/cfgetosp.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    44#include <sys/termio.h>         /* CBAUD */
    55
    6 speed_t _cfgetospeed (const struct termios *ptermios)
     6speed_t _STD(cfgetospeed) (const struct termios *ptermios)
    77{
    88  return ptermios->c_cflag & CBAUD;
  • trunk/src/emx/src/lib/termios/cfsetisp.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    44#include <errno.h>
    55
    6 int _cfsetspeed (struct termios *ptermios, speed_t speed);
    7 
    8 int _cfsetispeed (struct termios *ptermios, speed_t speed)
     6int _STD(cfsetispeed) (struct termios *ptermios, speed_t speed)
    97{
    10   return _cfsetspeed (ptermios, speed);
     8  return cfsetspeed (ptermios, speed);
    119}
  • trunk/src/emx/src/lib/termios/cfsetosp.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    33#include <termios.h>
    44
    5 int _cfsetspeed (struct termios *ptermios, speed_t speed);
    6 
    7 int _cfsetospeed (struct termios *ptermios, speed_t speed)
     5int _STD(cfsetospeed) (struct termios *ptermios, speed_t speed)
    86{
    9   return _cfsetspeed (ptermios, speed);
     7  return cfsetspeed (ptermios, speed);
    108}
  • trunk/src/emx/src/lib/termios/cfsetspe.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    55#include <sys/termio.h>         /* CBAUD */
    66
    7 int _cfsetspeed (struct termios *ptermios, speed_t speed)
     7int _STD(cfsetspeed) (struct termios *ptermios, speed_t speed)
    88{
    99  /* speed is always >= B0 as speed_t is unsigned and B0 is zero. */
  • trunk/src/emx/src/lib/termios/tcdrain.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r648 r649  
    44#include <sys/ioctl.h>
    55
    6 int _tcdrain (int handle)
     6int _STD(tcdrain) (int handle)
    77{
    88  return ioctl (handle, TCSBRK, 1);
  • trunk/src/emx/src/lib/termios/tcflow.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r648 r649  
    44#include <sys/ioctl.h>
    55
    6 int _tcflow (int handle, int action)
     6int _STD(tcflow) (int handle, int action)
    77{
    88  return ioctl (handle, TCXONC, action);
  • trunk/src/emx/src/lib/termios/tcflush.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r648 r649  
    44#include <sys/ioctl.h>
    55
    6 int _tcflush (int handle, int queue)
     6int _STD(tcflush) (int handle, int queue)
    77{
    88  return ioctl (handle, TCFLSH, queue);
  • trunk/src/emx/src/lib/termios/tcgetatt.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r648 r649  
    44#include <sys/ioctl.h>
    55
    6 int _tcgetattr (int handle, struct termios *ptermios)
     6int _STD(tcgetattr) (int handle, struct termios *ptermios)
    77{
    88  return ioctl (handle, _TCGA, ptermios);
  • trunk/src/emx/src/lib/termios/tcgetpgr.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    55#include <sys/types.h>
    66
    7 pid_t _tcgetpgrp (int fd)
     7pid_t _STD(tcgetpgrp) (int fd)
    88{
    99  errno = ENOSYS;
  • trunk/src/emx/src/lib/termios/tcsendbr.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r648 r649  
    55#include <sys/ioctl.h>
    66
    7 int _tcsendbreak (int handle, int duration)
     7int _STD(tcsendbreak) (int handle, int duration)
    88{
    99  return ioctl (handle, TCSBRK, duration);
  • trunk/src/emx/src/lib/termios/tcsetatt.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r648 r649  
    55#include <sys/ioctl.h>
    66
    7 int _tcsetattr (int handle, int options, const struct termios *ptermios)
     7int _STD(tcsetattr) (int handle, int options, const struct termios *ptermios)
    88{
    99  int request;
  • trunk/src/emx/src/lib/termios/tcsetpgr.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    55#include <sys/types.h>
    66
    7 int _tcsetpgrp (int fd, pid_t pgrp)
     7int _STD(tcsetpgrp) (int fd, pid_t pgrp)
    88{
    99  errno = ENOSYS;
  • trunk/src/emx/src/libiconv/iconv.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r648 r649  
    1 /* OS/2 iconv() implementation through OS/2 Unicode API
    2    Copyright (C) 2001-2002 Free Software Foundation, Inc.
    3 
    4    This program is free software; you can redistribute it and/or modify it
    5    under the terms of the GNU Library General Public License as published
    6    by the Free Software Foundation; either version 2, or (at your option)
    7    any later version.
    8 
    9    This program is distributed in the hope that it will be useful,
    10    but WITHOUT ANY WARRANTY; without even the implied warranty of
    11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12    Library General Public License for more details.
    13 
    14    You should have received a copy of the GNU Library General Public
    15    License along with this program; if not, write to the Free Software
    16    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
    17    USA.  */
    18 
    19 /*
    20    This file implements an iconv wrapper based on OS/2 Unicode API.
    21 */
     1/* iconv wrapper based on OS/2 Unicode API. */
    222
    233#include <uconv.h>
Note: See TracChangeset for help on using the changeset viewer.