projects
/
winterboard.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Use UIWebBrowserView on versions of iOS that support it.
[winterboard.git]
/
Optimize.cpp
1
#include <sys/types.h>
2
#include <unistd.h>
3
4
#include <stdlib.h>
5
6
int
main
(
int
argc
,
char
*
argv
[]) {
7
setuid
(
0
);
8
setgid
(
0
);
9
10
system
(
"/usr/bin/find -L /Library/Themes/ -name '*.png' -not -xtype l -print0 | /usr/bin/xargs -0 pincrush -i"
);
11
12
return
0
;
13
}