comparison libinterp/corefcn/syscalls.cc @ 21604:d7a268e68e69

maint: Strip trailing whitespace from source files.
author John W. Eaton <jwe@octave.org>
date Mon, 11 Apr 2016 10:53:18 -0400
parents ad0599a0acc6
children 46f059de4dce
comparison
equal deleted inserted replaced
21603:37cbdf7bffa9 21604:d7a268e68e69
470 { 470 {
471 if (args.length () != 0) 471 if (args.length () != 0)
472 print_usage (); 472 print_usage ();
473 473
474 if (symbol_table::at_top_level ()) 474 if (symbol_table::at_top_level ())
475 error ("fork: cannot be called from command line"); 475 error ("fork: cannot be called from command line");
476 476
477 std::string msg; 477 std::string msg;
478 478
479 pid_t pid = octave_syscalls::fork (msg); 479 pid_t pid = octave_syscalls::fork (msg);
480 480