Subversion Repositories SvarDOS

Rev

Rev 544 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 544 Rev 1101
1
#include <stdio.h>
1
#include <stdio.h>
2
#include <stdlib.h>
2
#include <stdlib.h>
3
 
3
 
4
int main(int argc, char **argv) {
4
int main(int argc, char **argv) {
5
  int d = atoi(argv[1]);
5
  int d = atoi(argv[1]);
6
  return(d);
6
  return(d);
7
}
7
}
8
 
8