Changeset - c21ed954efe5
[Not reviewed]
default
0 3 0
Nathan Brink (binki) - 16 years ago 2009-05-24 14:32:11
ohnobinki@ohnopublishing.net
added return statements to stubs to prevent warnings
3 files changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/client/libdistren.c
Show inline comments
 
@@ -69,12 +69,13 @@ int distren_init(distren_t *handle)
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_submit_file(distren_t handle, distren_job_t *job, const char *filename)
 
{
 
  return 1;
 
}
 

	
 
/**
 

	
 
 */
 
int distren_free(distren_t handle)
src/client/libdistren_config.c
Show inline comments
 
@@ -22,8 +22,8 @@
 
 */
 

	
 
#include <libdistren.h>
 

	
 
int _distren_getoptions(distren_t handle)
 
{
 
  
 
  return 1;
 
}
src/client/libdistren_job.c
Show inline comments
 
@@ -25,21 +25,24 @@
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_job_getid(distren_job_t job, char **jobid)
 
{
 
  return 1;
 
}
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_job_retrieve_file(distren_job_t job, const char *outfile)
 
{
 
  return 1;
 
}
 

	
 
/**
 
   @todo Stub
 
 */
 
int distren_job_free(distren_job_t job)
 
{
 
  return 1;
 
}
0 comments (0 inline, 0 general)