Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the Storage::read_async and Storage::write_async methods
[simgrid.git] / tools / cmake / test_prog / prog_sem_init.c
index 43540a0..e0a53f5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2014. The SimGrid Team.
+/* Copyright (c) 2010-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -12,7 +12,7 @@
 int main(void)
 {
   sem_t s;
-  if (sem_init(&s, 0, 0) != 0) 
+  if (sem_init(&s, 0, 0) != 0)
      return 1;
   return 0;
 }