Remove unnecessary blank lines from Javascript examples

This commit is contained in:
William S Fulton 2014-04-19 17:59:49 +01:00
commit aae63efcfe
5 changed files with 44 additions and 44 deletions

View file

@ -56,7 +56,7 @@ void print_vars() {
printf("dvar = %g\n", dvar);
printf("cvar = %c\n", cvar);
printf("strvar = %s\n", strvar ? strvar : "(null)");
printf("cstrvar = %s\n", cstrvar ? cstrvar : "(null)");
printf("cstrvar = %s\n", cstrvar);
printf("iptrvar = %p\n", iptrvar);
printf("name = %s\n", name);
printf("ptptr = %p (%d, %d)\n", ptptr, ptptr ? ptptr->x : 0, ptptr ? ptptr->y : 0);