Skip to content

Commit

Permalink
used comments to contributer style
Browse files Browse the repository at this point in the history
  • Loading branch information
bovi committed Sep 23, 2012
1 parent 4d12ff4 commit 993b37c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mrbgems/generator.c
Expand Up @@ -58,7 +58,7 @@ for_each_gem (char before[1024], char after[1024],
char src_path[4096] = { 0 };
struct stat attribut;

// return value
/* return value */
char* complete_line = malloc(4096 + sizeof(char));
strcpy(complete_line, "");
strcat(complete_line, start);
Expand Down Expand Up @@ -166,14 +166,14 @@ make_gem_makefile()

printf("\n");

// Rule for building all C extensions of each Gem
/* Rule for building all C extensions of each Gem */
if (!gem_c_empty) {
printf("all_gems :\n%s\n",
for_each_gem("\t@$(MAKE) -C ", " $(MAKE_FLAGS)\n", "", "", "")
);
}

// Rule for building all Ruby Extension of each Gem
/* Rule for building all Ruby Extension of each Gem */
if (!gem_ruby_empty) {
printf("mrblib_gem.o : mrblib_gem.c\n\n"

Expand Down

0 comments on commit 993b37c

Please sign in to comment.