diff options
author | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2012-04-27 17:15:35 +0000 |
---|---|---|
committer | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2012-04-27 17:15:35 +0000 |
commit | 6d4fb7df596c8f2167088b1bc32d830f088e1eb6 (patch) | |
tree | 3b438068f12d3fb8c3c5cc9b1d127869a5434239 /FacebookRM/incrementbuild.c | |
parent | 2ec2fe72f5754f59363335f9d5578600022661a1 (diff) |
FacebookRM: sources removed, there are on http://robyer.googlecode.com/svn/trunk/facebook
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@290 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'FacebookRM/incrementbuild.c')
-rw-r--r-- | FacebookRM/incrementbuild.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/FacebookRM/incrementbuild.c b/FacebookRM/incrementbuild.c deleted file mode 100644 index 8f9c359..0000000 --- a/FacebookRM/incrementbuild.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <stdio.h>
-
-int main( void )
-{
- int build = 0;
- FILE* f;
- FILE* g;
- f = fopen( "build.h", "r" );
- fscanf( f, "#define __BUILD %d", &build );
- fclose( f );
- g = fopen( "build.h", "w" );
- fprintf( g, "#define __BUILD %d\n", ++build );
- fclose( g );
-}
|