Changeset 8836a9 in git for Singular/libparse.ll


Ignore:
Timestamp:
Jan 8, 2013, 11:58:46 PM (11 years ago)
Author:
Max Horn <max@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
16735072270cd28225d49e8d896664f0b02c46e7
Parents:
d101b165f063c8f437a101b437baa6095a596422
git-author:
Max Horn <max@quendi.de>2013-01-08 23:58:46+01:00
git-committer:
Oleksandr Motsak <http://goo.gl/mcpzY>2013-01-10 16:45:07+01:00
Message:
Fix main() prototype of libparse

Conflicts:
	Singular/libparse.l
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/libparse.ll

    rd101b1 r8836a9  
    970970
    971971#ifdef STANDALONE_PARSER
    972 main( int argc, char *argv[] )
     972int main( int argc, char *argv[] )
    973973{
    974974  lib_style_types lib_style;
     
    977977  {
    978978    fprintf(stderr, "No library found to parse.\n");
    979     exit(1);
     979    return 1;
    980980  }
    981981  if (! (texinfo_out || category_out))
     
    999999  if (texinfo_out)
    10001000    printf("1;");
    1001   exit(0);
     1001  return 0;
    10021002}
    10031003
Note: See TracChangeset for help on using the changeset viewer.