combining two sketches then returning to the first from second

return 0; won't work because you declared the function as void, meaning that it doesn't return anything, not even a zero.

This should work...

return;