File: clichk.c

package info (click to toggle)
prrte 4.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 9,108 kB
  • sloc: ansic: 81,373; sh: 4,289; perl: 3,150; makefile: 1,878; python: 610; lex: 352
file content (14 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define _GNU_SOURCE
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include <pmix.h>

int main(int argc, char **argv)
{
    char *tmp = PMIx_Argv_join(argv, ' ');
    fprintf(stderr, "CMDLINE: %s\n", tmp);
    return 0;
}