If you are looking get a permutation-adjusted t-test, you can use PROC MULTTEST which will do the permutations internally for you and give you a permutation-adjusted p-value computed from the p-values of all the permutations. For example:
data a;
input Placebo VitA;
Grp="Placebo"; Y=Placebo; output;
Grp="VitA"; Y=VitA; output;
keep Grp Y;
datalines;
8.62 0.06
1.48 1.72
8.93 2.19
9.57 7.32
2.65 7.53
;
proc multtest data=a perm;
class Grp; test mean(Y);
run;
See the MULTTEST documentation for details on the computations and examples:
http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/multtest_toc.htm