I don't think there's an existing function, but using [`pcalls`](http://clojuredocs.org/clojure.core/pcalls) rather than `pmap` seems a little closer to what you want:

 (defn prun [n f]
 (apply pcalls (repeat n f)))

You don't need to wrap `myfunc` with `#()` in the call to`repeatedly`, btw, nor calling `prun` as defined above:

 (prun 10 myfunc)

You may find [`pvalues`](http://clojuredocs.org/clojure.core/pvalues) useful as well.