~ubuntu-branches/ubuntu/edgy/tilp/edgy

« back to all changes in this revision

Viewing changes to src/win32/unistd.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien BLACHE
  • Date: 2004-10-31 16:31:08 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20041031163108-ijcnonytcx6avaim
Tags: 6.76-1
* New upstream release.
  + Fixes crash on !i386 due to va_list misuse.
  + Doesn't show the action dbox if the list of identical variables is
    empty (closes: #276047).
* Bumped B-D on newest libti*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Hey EMACS -*- linux-c -*- */
2
 
/* $Id: unistd.c 366 2004-03-22 18:04:07Z roms $ */
3
 
 
4
 
/*  tilp - Ti Linking Program
5
 
 *  Copyright (C) 1999-2004  Romain Lievin
6
 
 *
7
 
 *  This program is free software; you can redistribute it and/or modify
8
 
 *  it under the terms of the GNU General Public License as published by
9
 
 *  the Free Software Foundation; either version 2 of the License, or
10
 
 *  (at your option) any later version.
11
 
 *
12
 
 *  This program is distributed in the hope that it will be useful,
13
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 *  GNU General Public License for more details.
16
 
 *
17
 
 *  You should have received a copy of the GNU General Public License
18
 
 *  along with this program; if not, write to the Free Software
19
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
 
 */
21
 
 
22
 
#ifdef __WIN32__
23
 
 
24
 
void usleep(int ms)
25
 
{
26
 
  //Sleep(ms);
27
 
}
28
 
 
29
 
#endif