~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/beos/archdep.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
        stdout_redir = *pstdout_redir;
217
217
    }
218
218
 
 
219
#ifdef WORDS_BIGENDIAN
 
220
    child_pid = -1;
 
221
#else
219
222
    child_pid = vfork();
 
223
#endif
 
224
 
220
225
    if (child_pid < 0) {
221
226
        log_error(LOG_DEFAULT, "vfork() failed: %s.", strerror(errno));
222
227
        return -1;