I need a system() call that executes another packeged executable file, WITHOUT waiting for it to finish before continuing on. I would PERFER a portable solution, as my software currently compiles fine on both win32 and *nix. On nix i can just system("theotherbinary &"); to background it, however i know of no such windows compaible option.

Any help would be greatly appreciated. Thanks for your time.